Add a versioned inline namespace to prevent ABI issues when linking code using multiple library versions.
20 lines
500 B
C++
20 lines
500 B
C++
// __ _____ _____ _____
|
|
// __| | __| | | | JSON for Modern C++
|
|
// | | |__ | | | | | | version 3.10.5
|
|
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
|
|
//
|
|
// SPDX-FileCopyrightText: 2013-2022 Niels Lohmann <https://nlohmann.me>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
|
|
#include <nlohmann/detail/macro_scope.hpp>
|
|
|
|
namespace nlohmann
|
|
{
|
|
inline namespace json_v3_10_5
|
|
{
|
|
NLOHMANN_CAN_CALL_STD_FUNC_IMPL(begin);
|
|
} // namespace json_v3_10_5
|
|
} // namespace nlohmann
|