Hi All,
First of all, I know that I'm asking too much here because I'm reporting a problem but can't get a simple example to reproduce it... But I though maybe, just maybe, it's of some help for you developers... or at least, some one can suggest a way to isolate the cause of it...
Anyway, my problem is that I have something like
namespace my_Enum_namespace
{
enum EnameSpaces
{
FIRST = 0,
SECOND,
THIRD,
SECTION
};
}
But when I type my_Enum_namespace:: in my code, *sometimes* (not often), I got the following completion just after I type the second semi-colon:
my_Enum_namespace::my_Enum_namespace. Most of the times the completion is ok, though, meaning a get a list (FIRST, SECOND, THIRD and SECTION)...
When I have the problem, if I delete the second my_Enum_namespace and start typing an enum (for example SEC) then I get a list of possible completions (SECOND and SECTION).
Reminder: the problem don't occur with the code above in the namespaces test project (within codecompletion dir).
Edit:I'm using the latest version from svn truck: r6196
Any thoughts, hints, suggestions are more than welcome... I'm willing to try to isolate the problem on my side and generate a simple case to reproduce the problem, so it can be solved... I really like C::B, I'm using it for a while now and it just rocks, so I'd like to contribute to make it better as well... :-)
Thanks,
daniloz