chris-mich

Results 19 comments of chris-mich

I tried the following command line: `uncrustify.exe -c test.cfg -l CPP -f test.cpp -p test.txt` It creates an empty "test.txt" file....

Still a problem with version 0.72 win64. Since we are using Uncrustify "on save", this behavior can produce nasty bugs! We experienced one last week... :-(

Still present in version 0.73 win64. This problem introduces bugs in our source code at least twice a year. :-(

What about this example. ``` #include "vector> void Test() { char* myString = "My string"; } ``` I get a space inserted at the end of the string. I used...

Let's try this! ``` # Uncrustify-0.71.0 align_assign_span = 1 align_func_params = true align_keep_extra_space = true sp_assign = force ``` Input (still no changes were expected) ``` void MyFunction( int a...

To keep alignments that were made manually by the developer. For example: ``` CallFunction1( aaaa, bbbbb, ccccc ); // Without align_keep_extra_space, spaces will be removed CallFunction2( aaaaa, bbbbbbb, ccccccc );...

It is still an issue. The parameter is called "align_**keep**_extra_space" but it is **adding** extra spaces for no apparent reason... But if you ask me, issue #2225 is much more...

Still a problem with version 0.75 and 0.76

Went into the same problem here with version 0,69 ``` void test() { CPoint pt( a * b, a * b, a * b ); } ``` Result: ``` void...

OK, I will retest when version 0.70 will be released. Thank you! ;-)