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