| 437 | struct SimpleStringDictionary : public StringDictionary |
| 438 | { |
| 439 | SimpleStringDictionary() = default; |
| 440 | SimpleStringDictionary (const SimpleStringDictionary& other) : strings (other.strings), stringMap (other.stringMap) {} |
| 441 | SimpleStringDictionary (SimpleStringDictionary&& other) : strings (std::move (other.strings)), stringMap (std::move (other.stringMap)) {} |
| 442 | SimpleStringDictionary& operator= (const SimpleStringDictionary& other) { strings = other.strings; stringMap = other.stringMap; return *this; } |
nothing calls this directly
no outgoing calls
no test coverage detected