[Qt-creator] Code completion bug

Frank Neuhaus dtag00 at gmail.com
Fri May 8 17:06:09 CEST 2009


Hey,
Code completion seems to have a problem with 'using namespace' inside of
another namespace. Here is a sample where it fails:

namespace A
{
int x=5;
};

namespace B
{
namespace C
{
int y=7;
};
};

namespace A
{
using namespace B;
};

int main()
{
     B::C::y; // works
     A::C::y; // doesnt show the y after A::C::
     return 0;
}

I am using the Version 1.1.80, Built on May 8 2009 at 01:18:33, Revision
8c8e9753f2

Thanks in advance
   Frank
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.qt-project.org/pipermail/qt-creator-old/attachments/20090508/a8673f6f/attachment.html 


More information about the Qt-creator-old mailing list