Should be fixed in trunk
Eran
problem with namespaces, need advice
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: problem with namespaces, need advice
Make sure you have read the HOW TO POST thread
-
- CodeLite Curious
- Posts: 8
- Joined: Sat Dec 04, 2010 10:55 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: problem with namespaces, need advice
Thanks! Trunk version no longer writes binary data!eranif wrote:Should be fixed in trunk
But I found another issue with goto Declaration/Implementation, see example:
Code: Select all
#include <stdio.h>
struct Foo
{
struct Tada
{
int bar;
};
int Bar(Tada baz);
};
int Foo::Bar(Tada baz) //goto Declaration/Implementation of Tada is not working. rev4737
{
return 0;
}
int main(int argc, char **argv)
{
printf("hello world\n");//абв
return 0;
}