[wpiutil] Guard MSVC pragma in SymbolExports.h (#4911)

MinGW gives an unknown pragma warning on Windows.
This commit is contained in:
Tyler Veness
2023-01-07 16:41:40 -08:00
committed by GitHub
parent 2d4b7b9147
commit cf4235ea36

View File

@@ -5,7 +5,9 @@
#pragma once
#ifdef _WIN32
#ifdef _MSC_VER
#pragma warning(disable : 4251)
#endif
#ifdef WPILIB_EXPORTS
#ifdef __GNUC__