summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/cpp/kw_subst.cpp
blob: e57868e2651c3f5cdb6608b52ef87760f1935485 (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
#include <string>

class CFoo
{
int foo1(int arg);
int foo2();
int foo3(char ch, int xx)
{
}
};

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

int CFoo::foo2()
{
}

int CFoo::operator +()
{
}

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

int some_func(void)
{
}