Mercurial > hg > piper-cpp
diff ext/json11/json11.hpp @ 242:d607ae858682
Update json11 code
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Tue, 13 Jun 2017 17:16:03 +0100 |
parents | bf8e3e7dd7de |
children |
line wrap: on
line diff
--- a/ext/json11/json11.hpp Tue Jun 13 16:24:24 2017 +0100 +++ b/ext/json11/json11.hpp Tue Jun 13 17:16:03 2017 +0100 @@ -56,6 +56,18 @@ #include <memory> #include <initializer_list> +#ifdef _MSC_VER + #if _MSC_VER <= 1800 // VS 2013 + #ifndef noexcept + #define noexcept throw() + #endif + + #ifndef snprintf + #define snprintf _snprintf_s + #endif + #endif +#endif + namespace json11 { enum JsonParse { @@ -165,9 +177,18 @@ // Parse multiple objects, concatenated or separated by whitespace static std::vector<Json> parse_multi( const std::string & in, + std::string::size_type & parser_stop_pos, std::string & err, JsonParse strategy = JsonParse::STANDARD); + static inline std::vector<Json> parse_multi( + const std::string & in, + std::string & err, + JsonParse strategy = JsonParse::STANDARD) { + std::string::size_type parser_stop_pos; + return parse_multi(in, parser_stop_pos, err, strategy); + } + bool operator== (const Json &rhs) const; bool operator< (const Json &rhs) const; bool operator!= (const Json &rhs) const { return !(*this == rhs); }