You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In types/std/variant.hpp, I see it use __cplusplus to check compiler version.
But in windows MSVC, this macro will be set with 199711L if we use option /std:c++17. My MSVC is Microsoft Visual Studio Community 2022.
So how do I solve this problem?
The text was updated successfully, but these errors were encountered:
In
types/std/variant.hpp
, I see it use__cplusplus
to check compiler version.But in windows MSVC, this macro will be set with
199711L
if we use option/std:c++17
. My MSVC isMicrosoft Visual Studio Community 2022
.So how do I solve this problem?
The text was updated successfully, but these errors were encountered: