move namespace json into the chaiscript namespace #486

This commit is contained in:
Bernd Amend 2021-05-24 21:04:24 +02:00
parent c258670350
commit 0f37802aba

View File

@ -19,7 +19,7 @@
#include <variant> #include <variant>
#include <vector> #include <vector>
namespace json { namespace chaiscript::json {
using std::enable_if; using std::enable_if;
using std::initializer_list; using std::initializer_list;
using std::is_convertible; using std::is_convertible;
@ -593,6 +593,6 @@ namespace json {
return JSONParser::parse_next(str, offset); return JSONParser::parse_next(str, offset);
} }
} // End Namespace json } // namespace chaiscript::json
#endif #endif