summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/30933-indent_paren_after_func_def.cpp
blob: 8a7751351c2eadee06d0d7e91ad0938bb7747553 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class SomeClass
{
public:
void SomeFunction
        (
        int const aTest,
        int const aResult
        )
{
	DoSomeStuff();
}
}