2022-07-31 13:22:22 +08:00
|
|
|
// __ _____ _____ _____
|
|
|
|
// __| | __| | | | JSON for Modern C++ (supporting code)
|
2022-08-12 21:04:06 +08:00
|
|
|
// | | |__ | | | | | | version 3.11.2
|
2022-07-31 13:22:22 +08:00
|
|
|
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
|
|
|
|
//
|
2023-11-26 22:51:19 +08:00
|
|
|
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
|
2022-07-31 13:22:22 +08:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
2022-07-31 03:59:13 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
|
|
|
|
std::size_t json_sizeof_diag_on();
|
|
|
|
std::size_t json_sizeof_diag_on_explicit();
|
|
|
|
|
|
|
|
std::size_t json_sizeof_diag_off();
|
|
|
|
std::size_t json_sizeof_diag_off_explicit();
|
|
|
|
|
|
|
|
void json_at_diag_on();
|
|
|
|
void json_at_diag_off();
|