made an environmental variablewhat is the name of this variable?
Also,name of environmental variable is "STIM_PATH", I don't know why you ask this!! since it could be anything and it is found by the compiler.I wanted to know if you manipulated the environment variable that goes straight to the compiler and not trough codeblocks. Because if you had done this, code blocks would have had no chance to detect the paths but compilation would have worked...
Also,name of environmental variable is "STIM_PATH", I don't know why you ask this!! since it could be anything and it is found by the compiler.I wanted to know if you manipulated the environment variable that goes straight to the compiler and not trough codeblocks. Because if you had done this, code blocks would have had no chance to detect the paths but compilation would have worked...
anyway as you say code completion is working, then find declaration should also work, i have no idea what is wrong...May be some one else can help you :)
clang cc is a alternative code completion plugin, that bases on the clang code parser... On this links is somewhere written where you can get a pre build plugin, that should work..
greetings
@slalom3, thanks for the report, but I think the most important thing is: please give a minimal sample project, so that we can test the bugs, otherwise, we can't help much, because we need a way to reproduce this bug.
if (header.data_type == envi_header::float32)
return ((bip<float>*)file)->co_matrix(co, avg, mask, PROGRESS);
@ollydbg I believe I found the problem!!! :)OK, I see the issue.
look at the code below:
Codeif (header.data_type == envi_header::float32)
return ((bip<float>*)file)->co_matrix(co, avg, mask, PROGRESS);
co_matrix ia a function and codeblocks cannot find its deceleration/implementation.I think the reason is using" -> " !
because it also happens in other similar cases.
Is there any way to solve it?
((bip<float>*)file)