Whole Tomato Software Forums
Whole Tomato Software Forums
Main Site | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 Visual Assist
 Technical Support
 C++0x support

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
ricardog Posted - Jul 20 2010 : 12:13:17 AM
Hello,

I'd like to kindly request priority for adding C++0x support, because working with it in VS 2010 makes VA behave incorrectly. Especially rvalue references (&&), but also nullptr keyword and lambdas.

Thank you.
4   L A T E S T    R E P L I E S    (Newest First)
sean Posted - Feb 26 2014 : 10:38:37 AM
case=20625 is fixed in build 2029
feline Posted - Nov 12 2010 : 4:53:25 PM
This is still in our list of things, and it is down as a fairly high priority bug. As a temporary work around turning On

VA Options -> Advanced -> Listboxes -> Get content from default Intellisense

should fix the listbox content. This is not going to fix the VA colouring in the code, but it should help.
.oisyn Posted - Nov 03 2010 : 11:20:32 AM
So, what's the status? As of 1833, rvalue references still don't work. Now I don't really have a problem with VA X not recognizing it's type, but the fact that a function returning an rvalue-reference is not recognized altogether is a bit annoying

struct Foo
{
    int Bar();
    int&& Baz();
};

Foo foo;
foo. // this will only show Bar, not Baz


.edit: this helps
struct Foo
{
    int Bar();
    int& & Baz();
}

(but is obviously invalid) I guess it sees && as a logical and operator, rather than some elaborate ref-to-ref type, and the parsing goes haywire.
accord Posted - Jul 20 2010 : 03:46:57 AM
This is on our list of things to do:

case=20625

What problem or weakness do you see with nullptr?
Which version of Visual Assist are you using?

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