You must be registered to post a reply. Click here to register.
T O P I C R E V I E W
AlexL
Posted - Aug 26 2013 : 04:53:47 AM Sometimes I'm not quite sure what a return type is, so I simply write:
foo = bar();
Then I tell Visual Assist to create a local variable foo. What it does is it creates:
BarType foo;
somewhere at the top of my function. What I actually want is:
BarType foo = bar();
Feel free to correct me in case I'm just using the feature wrong.
1 L A T E S T R E P L I E S (Newest First)
accord
Posted - Aug 26 2013 : 4:03:11 PM This makes sense. I have put in a feature request for Create from Usage to reuse what it have at hand to see what the developers make of it:
case=76424
So Create from Usage wouldn't create separate declaration line.