This is a(n):
Details:
Prerequisite:
uncrustify for our coding style in C++.Steps:
uncrustify to get right code..diff with two files.Scenario:
Assume there is a source code in P.R.
int bad()
{
return 1+2;
}
Output of uncrustify
int bad()
{
return 1 + 2;
}
Output of diff
< return 1+2;
---
> return 1 + 2;
Could you make it such that only warning and errors are printed? Currently, too much log is printed in the C++ build, which is making it harder to find errors and warnings.
Ok, I鈥檒l fix this after 7th Feb.
@InfiniteCoder I reduced output. How does it look?
@iattempt There is scope for improvement. Anything that is obvious should go away. I have some suggestions, but I'm not sure if its possible to implement them.
Ok,
馃敟 We need ardent men to create test files. see #3257
Most helpful comment
Ok, I鈥檒l fix this after 7th Feb.