Inserts a new code into map
| 62 | |
| 63 | //! Inserts a new code into map |
| 64 | void emplace(const ErrorCode::Code *code) { |
| 65 | map_.emplace(code->value(), code); |
| 66 | } |
| 67 | |
| 68 | //! Retrieve the description of code |
| 69 | const char *what(int val) const { |
no test coverage detected