Difference between revisions of "ApCoCoA-1:HowTo:Tips for developing (Ap)CoCoA with Eclipse"
From ApCoCoAWiki
(Created page) |
(Added category tag) |
||
Line 2: | Line 2: | ||
==Code completion does not work and my editor window has a gray background== | ==Code completion does not work and my editor window has a gray background== | ||
In this case it could be that you are currently working within a <code>#ifdef SOME_SYMBOL</code> block and the symbol <code>SOME_SYMBOL</code> has not been declared within your Eclipse project. Symbols can be declared by clicking on Project -> Properties -> C/C++ General -> Paths and Symbols -> Symbols. Be sure to declare the symbol for the correct programming language (e.g. "GNU C++"). | In this case it could be that you are currently working within a <code>#ifdef SOME_SYMBOL</code> block and the symbol <code>SOME_SYMBOL</code> has not been declared within your Eclipse project. Symbols can be declared by clicking on Project -> Properties -> C/C++ General -> Paths and Symbols -> Symbols. Be sure to declare the symbol for the correct programming language (e.g. "GNU C++"). | ||
+ | |||
+ | [[Category:HowTo|{{PAGENAME}}]] |
Revision as of 13:35, 17 October 2008
Code completion troubleshooting
Code completion does not work and my editor window has a gray background
In this case it could be that you are currently working within a #ifdef SOME_SYMBOL
block and the symbol SOME_SYMBOL
has not been declared within your Eclipse project. Symbols can be declared by clicking on Project -> Properties -> C/C++ General -> Paths and Symbols -> Symbols. Be sure to declare the symbol for the correct programming language (e.g. "GNU C++").