1 // __ _____ _____ _____ 2 // __| | __| | | | JSON for Modern C++ (supporting code) 3 // | | |__ | | | | | | version 3.11.3 4 // |_____|_____|_____|_|___| https://github.com/nlohmann/json 5 // 6 // SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me> 7 // SPDX-License-Identifier: MIT 8 9 #include "doctest_compatibility.h" 10 #undef WIN32_LEAN_AND_MEAN 11 #undef NOMINMAX 12 13 #ifdef _WIN32 14 #include <windows.h> 15 #endif 16 17 #include <nlohmann/json.hpp> 18 using nlohmann::json; 19 20 TEST_CASE("include windows.h") 21 { 22 CHECK(true); 23 } 24