Tagged Questions
3
votes
2answers
128 views
Tools to bracket conditional statement
Does anyone know of a tool which can beautify C++ code to add brackets to conditional statements? What I need to do is change:
if ( myCondition )
setDateTime( date, time );
to
if ( myCondition ...
2
votes
2answers
412 views
Online C++ Code Formatter/Beautifier
There is good local beautifier for c++, AStyle.
I'm interested in online tools, because i'm using computers where i shouldn't use programs which aren't installed by administrator.