Whole Tomato Software Forums
Whole Tomato Software Forums
Main Site | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 Visual Assist
 Technical Support
 Bug in Move Implementation to Source File

You must be registered to post a reply.
Click here to register.

Screensize:
UserName:
Password:
Format: BoldItalicizeUnderlineStrikethrough Align leftCenterAlign right Insert horizontal ruleUpload and insert imageInsert hyperlinkInsert email addressInsert codeInsert quoted textInsert listInsert Emoji
   
Message:

Forum code is on.
Html is off.

 
Check to subscribe to this topic.
   

T O P I C    R E V I E W
stzpz Posted - Dec 24 2015 : 04:00:31 AM
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()
        {
        }
    }
}

1   L A T E S T    R E P L I E S    (Newest First)
accord Posted - Dec 24 2015 : 08:47:09 AM
I am seeing the same problem here. Thank you for the clear description.

case=94090

© 2023 Whole Tomato Software, LLC Go To Top Of Page
Snitz Forums 2000