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 class name in the return type is missing after moving the function to source for the following code.
class Test
{
struct Result
{};
std::vector<Result> getResult()
{}
};
After moving the code, the class name Test in the return type std::vector<Result> is missing.
std::vector<Result> Test::getResult()
{
}