Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
64 views

How to format opening braces in C++ methods with astyle?

Is a common practice to move function's opening brace to next line. How to apply this in class method with astyle (code beautifier)? example: // this is an initial C++ code class Class { public: ...
1
vote
1answer
33 views

how to avoid extra 'extern' indent using astyle

I used astyle to format my c/c++ source codes, after many tries, it almost satisfied my need except that it added extra indent after the clause extern "c" {. I have googled for a long time but failed ...
1
vote
1answer
46 views

How do I create a makefile rule to run astyle?

I'd like to create a makefile rule to run astyle on any writable source files. Currently, I have a rule like the following: style: find . -perm -200 -regex ".*[.][CHch]p*" -exec astyle ...
1
vote
1answer
176 views

Astyle code formatting

I'm writing a linux kernel module, and trying to use astyle to help me follow the coding standard. It seems to be formatting a spi_driver structure incorrectly and I'm wondering if anyone knows why. ...
0
votes
1answer
33 views

formatting functions parameter

Are you aware of any tool or program that is able to beautify the function input parameters making the variable left-aligned like the example below? I am having a look at A-Style right now. Do you ...
0
votes
0answers
8 views

Is it possible to set line limitation in the AStyle

I am using AStyle to format C or cpp source codes. I am just wondering it is possible to set line limitation in the AStyle?
0
votes
2answers
75 views

Integrating Artistic Style with Visual Studio 2010

Is it possible to integrate Artistic Style with Visual Studio 2010? It does a much better job of fixing mangled code indenting and styling than the include visual studio code formatter. Ideally a ...