summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/cpp/33040-bug_i_411.cpp
blob: 5a3f09aa4036c0a82f47667df438588462534983 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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);


}