C++ code beautifier

G

groleo

Hi.

Do you know any good code beautifier for c++?

I tried indent but it screws my code, and astyle seems to go by its own
rules :)
 
P

Phlip

groleo said:
Do you know any good code beautifier for c++?

I tried indent but it screws my code, and astyle seems to go by its own
rules :)

astyle works great what's wrong with it?
 
G

groleo

Jonathan said:
Pardon the stupid question, but what is a code beautifier typically used for?
Don't you write beautiful code naturally? ;-)
Jonathan said:
Pardon the stupid question, but what is a code beautifier typically used for?
Don't you write beautiful code naturally? ;-)

What if some body else wrote the code, and it's hard to read?
I sometimes use this pretty-printer when I need to read preprocessor-generated
code: http://www.prettyprinter.de/index.php

Jonathan

astyle works great what's wrong with it?

Well, I tend to use the if/else statements a little different, from the
way
astyle can indent it:

if( condition){
// code
}
else {
// code
}

so I was thinking that a style file, where indenting rules are defined
would be necessary
http://industrialxp.org/community/bin/view/Main/TestFirstUserInterfaces
 
B

Bharat Karia

Hello (e-mail address removed),
used for?


used for?

What if some body else wrote the code, and it's hard to read?


Well, I tend to use the if/else statements a little different, from
the
way
astyle can indent it:
if( condition){
// code
}
else {
// code
}
so I was thinking that a style file, where indenting rules are defined
would be necessary
http://industrialxp.org/community/bin/view/Main/TestFirstUserInterface
s
astyle has several commandline params that can indent the code however you
want it
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,048
Latest member
verona

Latest Threads

Top