Searched defs:exceptional_ptr (Results 1 – 1 of 1) sorted by relevance
16 struct exceptional_ptr { struct17 exception_ptr ptr_;19 exceptional_ptr() : ptr_() {} in exceptional_ptr() function20 explicit exceptional_ptr(exception_ptr ex) : ptr_(ex) {} in exceptional_ptr() argument22 …explicit exceptional_ptr(BOOST_FWD_REF(E) ex) : ptr_(boost::copy_exception(boost::forward<E>(ex)))… in exceptional_ptr() argument