Fixes #3974 by using the standard-compliant `#ifndef #define #endif` pattern instead of `#pragma once`.
21 lines
612 B
C++
21 lines
612 B
C++
// __ _____ _____ _____
|
|
// __| | __| | | | JSON for Modern C++
|
|
// | | |__ | | | | | | version 3.11.2
|
|
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
|
|
//
|
|
// SPDX-FileCopyrightText: 2013-2022 Niels Lohmann <https://nlohmann.me>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#ifndef INCLUDE_NLOHMANN_DETAIL_META_CALL_STD_BEGIN_HPP
|
|
#define INCLUDE_NLOHMANN_DETAIL_META_CALL_STD_BEGIN_HPP
|
|
|
|
#include <nlohmann/detail/macro_scope.hpp>
|
|
|
|
NLOHMANN_JSON_NAMESPACE_BEGIN
|
|
|
|
NLOHMANN_CAN_CALL_STD_FUNC_IMPL(begin);
|
|
|
|
NLOHMANN_JSON_NAMESPACE_END
|
|
|
|
#endif // INCLUDE_NLOHMANN_DETAIL_META_CALL_STD_BEGIN_HPP
|