Ryder Rishel

Results 1 comments of Ryder Rishel

FWIW, building same example using `boost::variant` works: ``` #include struct Visit : public boost::static_visitor { std::string operator()(int i) const { return "int"; } }; void test() { boost::variant i(1); boost::apply_visitor(Visit{},...