Util+Test: Change namespace of JSON classes: Json -> Util::JSON
This commit is contained in:
@@ -4,8 +4,8 @@
|
||||
* SPDX-License-Identifier: MIT
|
||||
*/
|
||||
|
||||
#ifndef JSON_FROM_JSON_H
|
||||
#define JSON_FROM_JSON_H
|
||||
#ifndef UTIL_JSON_FROM_JSON_H
|
||||
#define UTIL_JSON_FROM_JSON_H
|
||||
|
||||
#include <algorithm> // transform
|
||||
#include <cassert> // assert
|
||||
@@ -20,7 +20,7 @@
|
||||
#include "util/json/object.h"
|
||||
#include "util/meta/odr.h"
|
||||
|
||||
namespace Json {
|
||||
namespace Util::JSON {
|
||||
|
||||
namespace Detail {
|
||||
|
||||
@@ -116,9 +116,9 @@ namespace {
|
||||
constexpr const auto& fromJson = Util::Detail::staticConst<Detail::fromJsonFunction>; // NOLINT(misc-definitions-in-headers,clang-diagnostic-unused-variable)
|
||||
} // namespace
|
||||
|
||||
} // namespace Json
|
||||
} // namespace Util::JSON
|
||||
|
||||
#endif // JSON_FROM_JSON_H
|
||||
#endif // UTIL_JSON_FROM_JSON_H
|
||||
|
||||
// Customization Points
|
||||
// https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/n4381.html
|
||||
|
||||
Reference in New Issue
Block a user