summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/cpp/kw_subst2.cpp
blob: d167cc1cb0815b1adb185ec4f18eb0e51e6cbfb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <string>

namespace bar
{

class CFoo
{
int foo1(int arg);
private:
int foo2()
{
}
};

int CFoo::foo1(int arg, char arg2)
{
}

int CFoo::foo2()
{
}

int CFoo::operator +()
{
}

map<string, int> func()
{
  // some codes
}

int some_func(void)
{
}

}