VA_X.dll file version 10.9.2086.0 built 2015.12.16
DevEnv.exe version 12.0.40629.0 Professional
msenv.dll version 12.0.40629.0
Comctl32.dll version 6.10.9600.17810
Windows 8.1 6.3 Build 9600
8 processors (x86-64, WOW64)
Language info: 1252, 0x409
The position of the function body after moving to source is incorrect for the following code example.
// Test.h
namespace t1
{
class test
{
void test()
{
}
};
}
// Test.cpp
namespace t1
{
namespace
{
int a;
}
}
test() will move it to the unnamed namespace instead of t1 as follow:
namespace t1
{
namespace
{
int a;
void test::test()
{
}
}
}