mirror of
https://github.com/nlohmann/json.git
synced 2026-09-26 03:55:48 +00:00
* Make JSON_STRICT_NUL_HANDLING part of the ABI tag JSON_STRICT_NUL_HANDLING (#5534) changes the bodies of inline functions: the lexer's handling of '\0' and input_adapter() for char arrays. So translation units compiled with and without it define the same functions differently, an ODR violation - the case the ABI tag exists for, as with JSON_BRACE_INIT_COPY_SEMANTICS (_bics). It now appends _snul to the inline namespace. The macro is new in 3.13.0, so no existing namespace changes. Its default moves to abi_macros.hpp, and it is only #undef'd without JSON_TEST_KEEP_MACROS, as for the other ABI macros. The ABI config tests, the namespace docs, the macro's docs and the Natvis file cover the new tag. Signed-off-by: Niels Lohmann <mail@nlohmann.me> * Amalgamate Signed-off-by: Niels Lohmann <mail@nlohmann.me> --------- Signed-off-by: Niels Lohmann <mail@nlohmann.me>
57 lines
1.3 KiB
C++
57 lines
1.3 KiB
C++
// __ _____ _____ _____
|
|
// __| | __| | | | JSON for Modern C++ (supporting code)
|
|
// | | |__ | | | | | | version 3.12.0
|
|
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
|
|
//
|
|
// SPDX-FileCopyrightText: 2013-2026 Niels Lohmann <https://nlohmann.me>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#include "doctest_compatibility.h"
|
|
|
|
#include "config.hpp"
|
|
|
|
#define NLOHMANN_JSON_NAMESPACE_NO_VERSION 1
|
|
#include <nlohmann/json_fwd.hpp>
|
|
|
|
TEST_CASE("default namespace without version component")
|
|
{
|
|
// GCC 4.8 fails with regex_error
|
|
#if !DOCTEST_GCC || DOCTEST_GCC >= DOCTEST_COMPILER(4, 9, 0)
|
|
SECTION("namespace matches expectation")
|
|
{
|
|
std::string expected = "nlohmann::json_abi";
|
|
|
|
#if JSON_DIAGNOSTICS
|
|
expected += "_diag";
|
|
#endif
|
|
|
|
#if JSON_USE_LEGACY_DISCARDED_VALUE_COMPARISON
|
|
expected += "_ldvcmp";
|
|
#endif
|
|
|
|
#if JSON_DIAGNOSTIC_POSITIONS
|
|
expected += "_dp";
|
|
#endif
|
|
|
|
#if JSON_BRACE_INIT_COPY_SEMANTICS
|
|
expected += "_bics";
|
|
#endif
|
|
|
|
#if JSON_PRECISE_STREAM_POSITION
|
|
expected += "_psp";
|
|
#endif
|
|
|
|
#if JSON_STRICT_NUL_HANDLING
|
|
expected += "_snul";
|
|
#endif
|
|
|
|
expected += "::basic_json";
|
|
|
|
// fallback for Clang
|
|
const std::string ns{STRINGIZE(NLOHMANN_JSON_NAMESPACE) "::basic_json"};
|
|
|
|
CHECK(namespace_name<nlohmann::json>(ns) == expected);
|
|
}
|
|
#endif
|
|
}
|