You must be registered to post a reply. Click here to register.
T O P I C R E V I E W
lokonity
Posted - Feb 18 2010 : 2:06:46 PM Hello,
I've been using Visual Assist X for C++ for a while now (I love it) but in the recent build (10.5.1738.0) I have noticed that when I throw "using namespace X" at the top of my scopes, all of the classes in that namespace are underlined with the red error line, but nothing's wrong. I don't remember seeing this in older builds. I am using Visual Studio 2008.
1 L A T E S T R E P L I E S (Newest First)
accord
Posted - Feb 19 2010 : 2:12:01 PM Can you please post an example code where you see the problem? I created this most simple code:
using namespace apple;
namespace apple {
class1
{
int test;
};
class class2
{
void test();
};
}