Util+Test: Change namespace of JSON classes: Json -> Util::JSON

This commit is contained in:
Riyyi
2022-07-22 12:41:27 +02:00
parent be74d89fea
commit deb9f29b47
19 changed files with 142 additions and 142 deletions
+2 -2
View File
@@ -13,7 +13,7 @@
#include "util/json/parser.h"
#include "util/json/value.h"
namespace Json {
namespace Util::JSON {
Job::Job(std::string_view input)
: m_input(input)
@@ -111,4 +111,4 @@ void Job::printErrorLine(Token token, const char* message)
std::string(line.length() - token.column, '~').c_str());
}
} // namespace Json
} // namespace Util::JSON