
25 Sep
2009
25 Sep
'09
12:41 a.m.
#include <boost/variant.hpp> struct test { }; int main(int argc, char **argv) { boost::variant<std::string, int, double> s; boost::get<test>(s); return 0; }