summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/cpp/indent_paren_after_func_def.cpp
blob: 703e0422bfeeac7476f02113c4af7f12ffab981e (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();
}
}