pragma warning bug fix when using g++ on windows (#5943)

This commit is contained in:
stekap000
2025-01-03 19:50:18 +01:00
committed by GitHub
parent 437b484070
commit bbeb515421

View File

@@ -38,8 +38,7 @@
#include <stdexcept>
#include <vector>
#if defined(_WIN32)
#if defined(_WIN32) && defined(_MSC_VER) && !defined(__INTEL_COMPILER)
# pragma warning( disable: 4251)
#endif
namespace p2t {