Tagged Questions
3
votes
2answers
833 views
Is it safe to serialize a raw boost::variant?
boost::variant claims that it is a value type. Does this mean that it's safe to simply write out the raw representation of a boost::variant and load it back later, as long as it only contains POD ...