| 27 | class SingletonConfig : public Config { |
| 28 | public: |
| 29 | SingletonConfig() { |
| 30 | merge(Config::getUserConfig()); |
| 31 | merge(Config::getAppConfig(env::getExePath())); |
| 32 | }; |
| 33 | |
| 34 | SingletonConfig(SingletonConfig const&) = delete; |
| 35 | SingletonConfig(SingletonConfig&&) = delete; |
nothing calls this directly
no test coverage detected