Carbide.c++ syntax highlighted code 'problem'
Hi all
I've noticed that even though my code otherwise compiles correctly, and I can't find any issues when debugging, the syntax highlighting appears to be pointing to a problem in the code and completely fails to give me any idication of what this problem could be.
The only thing that I have noticed is that the intellisense fails to work for highlighted issues - maybe because the object cannot be resolved I suspect. But then again, why wouldn't this show up when I attempt to build?
Is there any systematic way of nailing what these mysterious problems could be that otherwise look fine?
Thanks. :o
Re: Carbide.c++ syntax highlighted code 'problem'
which version of carbide.c++ you are using. also in older versions it used to be a known issue.
Re: Carbide.c++ syntax highlighted code 'problem'
v1.3 express. Currently going through the help and not found an answer yet. :)
Re: Carbide.c++ syntax highlighted code 'problem'
Probably it would be better showing the code line in question and the error message.
Re: Carbide.c++ syntax highlighted code 'problem'
[QUOTE=wizard_hu_;453825]Probably it would be better showing the code line in question and the error message.[/QUOTE]
That's just it, there is no error message. To all intents and purposesthe code compiles completely cleanly but the highlighting points to an issue that doesn't appear to exist.
Here is a snippet of code where the problem occurs.
[code]
RFs iFs;
...
[B][I][U]TBuf<12>[/U][/I][/B] FileNameBuf(FileName);
ret = file.[B][I][U]Open[/U][/I][/B](iFs, FileNameBuf, EFileWrite|EFileShareAny);
[/code]
Where I've underscored/bold/italicised is where the problem is.
That's about it.