| 315 | */ |
| 316 | |
| 317 | Settings::SettingsStringContainer::SettingsStringContainer( const char* const str ) |
| 318 | : c_str_(str), str_() |
| 319 | {} |
| 320 | |
| 321 | Settings::SettingsStringContainer::SettingsStringContainer( const std::string& str ) |
| 322 | : c_str_(nullptr), str_(str) |
nothing calls this directly
no outgoing calls
no test coverage detected