problem with namespaces, need advice

General questions regarding the usage of CodeLite
User avatar
eranif
CodeLite Plugin
Posts: 6373
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: problem with namespaces, need advice

Post by eranif »

Should be fixed in trunk

Eran
Make sure you have read the HOW TO POST thread
veldspar
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

Post by veldspar »

eranif wrote:Should be fixed in trunk
Thanks! Trunk version no longer writes binary data!

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;
}
The example above is legal in C++, but in "int Foo::Bar(Tada baz)" declaration/implementation of Tada cannot be located.
Post Reply