| 90 | |
| 91 | template <typename T> |
| 92 | inline const std::string KEY_NOT_FOUND_WITH_KEY( |
| 93 | const T&, typename disable_if<is_numeric<T>>::type* = 0) { |
| 94 | return KEY_NOT_FOUND; |
| 95 | } |
| 96 | |
| 97 | inline const std::string KEY_NOT_FOUND_WITH_KEY(const std::string& key) { |
| 98 | std::stringstream stream; |