jchick
Joined: 24 Apr 2006 Posts: 2 Location: Germany
|
Posted: Mon Apr 24, 2006 12:47 pm Post subject: Sort functions in C++ beautifier |
|
|
It seems I am the only person in the world interested in something like this because I have not found a single code formatter that can do it.
Some of the projects I work on are over 180K lines. In order to keep maintenance low we have strict formatting rules. One of these rules require the ascending sort of function implementations.
For Exampe:
| Code: | void A()
{
...
}
void B()
{
...
}
|
It would be great if the C++ Beautifier included the ability to sort functions in a file by function name. The return type should be avoided. The definition viewer can already sort by line number or function name. _________________ Cheers,
Jon |
|