summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/cpp/30205-cmt_right.cpp
blob: bcca4e2e720b6a7915920f68e468ce51500e1c8d (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
class X
{
struct Zone
{
    //    int a;
    //    int b;
    int c;
    int d;
    double e;
    inline Zone(int _c) : c(_c)
    {
    }                                           // constructor for zone search

    inline Zone(
	//int _a,
	//int _b,
	int _c,
	int _d, double _e) :
	//a(_a),
	//b(_b),
	c(_c),
	d(_d),
	e(_e)
    {
    }
};
};