Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There are lots of source code formatting tools out there. Which ones work best for C++?

I'm interested in command-line tools or other things that can be automatically run when checking code in/out, preferably without needing to launch an editor or IDE.

(If you see the one you like already listed as an answer, vote it up. If it's not there, add it.)

share|improve this question

closed as not constructive by casperOne Apr 25 '12 at 11:57

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

5 Answers

up vote 118 down vote accepted

AStyle, hands down.

It can be customized in great detail for C++ and Java (and others too)

Edit: This is a source code formatting tool... are you looking for a way to make it look good on screen, or to format the code?

share|improve this answer
1  
Nice. I hadn't heard of this tool until now. Works great! – Runcible May 8 '09 at 18:21
3  
neat tool. added to favorites collection. – Johannes Schaub - litb May 8 '09 at 18:22
6  
I'm interested in formatting the code, preferably without needing to run an editor. AStyle is the kind of thing I'm looking for. – Kristopher Johnson May 8 '09 at 18:26
1  
We have some messy source files full of complicated macros, making it hard to understand how to modify the code or set breakpoints. We de-macroed it with gcc -E, resulting in very long lines of nested for loops, if statements etc. Astyle fixed that to be readable, saving us a lot of trouble. Astyle has a permanent place on my software toolshelf! – DarenW Aug 10 '10 at 17:33
8  
Vim tip: if you want to beautify the code in a file you're current editing use:%!astyle – tonylo Dec 16 '10 at 16:33
show 5 more comments

Look at the project UniversalIndentGUI. You can experiment with several indenters using it: AStyle, Uncrustify, GreatCode, ... and select the best for you. Any of them can be run later from a command line.

share|improve this answer

Uncrustify has a lot of configurable options. You'll probably need Universal Indent GUI (in Konstantin's reply) as well to configure it.

share|improve this answer
1  
The git commands to get source seem to be broken as of 2010-aug-10. – DarenW Aug 10 '10 at 17:28
We are using uncrustify in my company for a few weeks. It works quite well. – Offirmo Sep 29 '11 at 13:36
unstable for 0.59, cannot handle pretty much of my code with segfault. – xis19 Jan 31 '12 at 23:56
Tried 0.59 too, freezes on my code with default configuration – fury May 2 '12 at 22:20
Addition to comment: It's a shame because it seems to have a lot of options (although undocumented). – fury May 2 '12 at 22:26
show 1 more comment

I've tried AStyle a little bit and Uncrustify a little bit more. I've found Uncrustify generated configuration file easier to tune. I've shared mine on GitHub, see the Gist link below.

https://gist.github.com/1352621

Hope it helps, Chris

share|improve this answer
Your gist is perhaps deleted. – user Mar 16 at 14:04

Our SD C++ Formatter reformats source files. It uses a full C++ parser to do so, builds an AST, and then prettyprints the result. It can't break your code.

share|improve this answer
6  
Might want to say here that this is a commercial plug for a product costing ~$50. That said, maybe its just so much better than the free options that its worth the cost. If so you should post an impartial review/comparison that demonstrates that. – David H Dec 27 '11 at 23:50
The sample C++ output indents preprocessor blocks, which hurts my eyes: semanticdesigns.com/Products/Formatters/… – JBRWilkinson Sep 12 '12 at 19:10
It's not exactly encouraging that this 3-sentence, code-formatter sales pitch contains 2 typos. – Gary Fixler May 18 at 10:32

Not the answer you're looking for? Browse other questions tagged or ask your own question.