AMDG
Peter Foelsche wrote:
#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;
}
I think there's an open ticket for this.
In Christ,
Steven Watanabe