From 0f37802aba5e6c8c6d44f0201cc00fc714d01513 Mon Sep 17 00:00:00 2001 From: Bernd Amend Date: Mon, 24 May 2021 21:04:24 +0200 Subject: [PATCH] move namespace json into the chaiscript namespace #486 --- include/chaiscript/utility/json.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/chaiscript/utility/json.hpp b/include/chaiscript/utility/json.hpp index 6bc57613..25be353a 100644 --- a/include/chaiscript/utility/json.hpp +++ b/include/chaiscript/utility/json.hpp @@ -19,7 +19,7 @@ #include #include -namespace json { +namespace chaiscript::json { using std::enable_if; using std::initializer_list; using std::is_convertible; @@ -593,6 +593,6 @@ namespace json { return JSONParser::parse_next(str, offset); } -} // End Namespace json +} // namespace chaiscript::json #endif