Whole Tomato Software Forums
Whole Tomato Software Forums
Main Site | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 Visual Assist
 Technical Support
 Code Inspection formatting issue

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
pwc Posted - Mar 16 2017 : 5:54:19 PM
Hello,

The new Code Inspection feature is fantastic. Thanks very much for adding this.

Converting to range-based for loops inserts an extra level of indentation for the first line of the loop, for example:


std::vector<int> v = { 1,2,3,4,5 };
for (auto i = 0;i < v.size();++i)
{
	int val = v[i];
	std::cout << val;
}


becomes:


std::vector<int> v = { 1,2,3,4,5 };
for (int val : v)
{
		std::cout << val;
}


Note the extra level of indentation for the "std::cout << val;" line.

Thanks,
Paul


4   L A T E S T    R E P L I E S    (Newest First)
feline Posted - Apr 29 2017 : 11:06:06 AM
The whats new page has now been updated. Sometimes these things take a day or two, but the information is now there to review.
pwc Posted - Apr 28 2017 : 12:49:25 PM
Thanks for the fix!

FYI, your website still shows 2212 as the latest here:

http://www.wholetomato.com/features/whats-new.asp
sean Posted - Apr 26 2017 : 5:07:08 PM
case=103137 is fixed in build 2217.
feline Posted - Mar 17 2017 : 3:05:17 PM
I am seeing the same effect here. Thank you for the clear description.

case=103137

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