Bsteinmayr
- Total activity 3
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 1
-
-
Bsteinmayr created a post, std::variant "compiler error" when using CMake cross-platform compilation
The following code compiles fine, both with the VS C++ compiler as well as GCC on a remote Linux machine:#include <variant>int main(){ std::variant<const char*, bool> a = "ABC"; return 0;}How...