Using std::variant in g++

6k Views Asked by At

How can I use std::variant in g++? Why isn't there std::variant in std::experimental (though std::optional is)? What version of g++ do I need? I prefer not to use boost and I'd like to use standard library only.

Edit: it seems like only g++ 7 supports std::variant. Then my question is: when will it be released and what problems may I encounter when using its experimental version?

2

There are 2 best solutions below

4
On BEST ANSWER

This page says, that GCC 7 has std::variant.

3
On

GCC has an info page where you can check which language feature was implemented with which version. It looks like variant is not yet implemented.