forked from uncrustify/uncrustify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalign-func-params.cpp
More file actions
35 lines (25 loc) · 983 Bytes
/
align-func-params.cpp
File metadata and controls
35 lines (25 loc) · 983 Bytes
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
class test
{
public:
TYPE_EXPORT method1(int a,
float b);
TYPE_EXPORT method2(int& d,
float e);
TYPE_EXPORT method3(int* f,
float g);
TYPE_EXPORT method4(int a);
TYPE_EXPORT method5(int & a);
TYPE_EXPORT method6(int * a);
TYPE_EXPORT method7(float a);
TYPE_EXPORT method8(float & a);
TYPE_EXPORT method9(float * a);
TYPE_EXPORT method3(int* f, char foo,
float g);
TYPE_EXPORT method1(int a,
float b)
{
int c;
if ( true ) callProc;
// do stuff.
}
}