Commit 208d78b4 authored by Dominik Charousset's avatar Dominik Charousset

Fix build on MSVC

parent 00765c34
...@@ -94,7 +94,8 @@ void parse(parse_state& ps, std::string& x); ...@@ -94,7 +94,8 @@ void parse(parse_state& ps, std::string& x);
void parse_element(parse_state& ps, std::string& x, const char* char_blacklist); void parse_element(parse_state& ps, std::string& x, const char* char_blacklist);
template <class T> template <class T>
void parse_element(parse_state& ps, T& x, const char*) { enable_if_t<!is_pair<T>::value> parse_element(parse_state& ps, T& x,
const char*) {
parse(ps, x); parse(ps, x);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment