mirror of
https://github.com/nlohmann/json.git
synced 2024-11-24 14:59:00 +08:00
9 lines
205 B
C++
9 lines
205 B
C++
#pragma once
|
|
|
|
// Header <ciso646> is removed in C++20.
|
|
// See <https://github.com/nlohmann/json/issues/2089> for more information.
|
|
|
|
#if __cplusplus <= 201703L
|
|
#include <ciso646> // and, not, or
|
|
#endif
|