summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/33041-bug_i_411.cpp
blob: 4e89d68d185d27cd395a40fdc7cadb8269957824 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class settings final
{
public:
settings();
~settings(  );
settings(const settings&);
settings & operator=(const settings&);


void set_something(const std::string& p_settings_name);


void set_another_setting(const std::string& p_settings_name);


}