AlphaFold3 / weight /_dep /Catch2 /projects /ExtraTests /X90-WindowsHeaderInclusion.cpp
wuxing0105's picture
Add files using upload-large-folder tool
0bd2a62 verified
Raw
History Blame Contribute Delete
359 Bytes
// X90-WindowsHeaderInclusion.cpp
// Test that the Catch2 header compiles even after including windows.h
// without defining NOMINMAX first. As an FYI, if you do that, you are
// wrong.
#include <windows.h>
#define CATCH_CONFIG_MAIN
#include <catch2/catch.hpp>
TEST_CASE("Catch2 did survive compilation with windows.h", "[compile-test]") {
SUCCEED();
}