We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b2fb73 commit dbe98ebCopy full SHA for dbe98eb
include/strtpl/string_template.hpp
@@ -179,7 +179,7 @@ namespace strtpl {
179
at(Map& map, const Key& key) {
180
auto i = map.find(key);
181
using std::end;
182
- return i == end(map) ? throw std::out_of_range("strtpl::at") : get<1>(*i);
+ return i == end(map) ? throw std::out_of_range("strtpl::at: index out of range") : get<1>(*i);
183
}
184
185
template <class BiIter>
0 commit comments