Mercurial > hg > vamp-build-and-test
comparison DEPENDENCIES/generic/include/boost/variant/bad_visit.hpp @ 101:c530137014c0
Update Boost headers (1.58.0)
author | Chris Cannam |
---|---|
date | Mon, 07 Sep 2015 11:12:49 +0100 |
parents | 2665513ce2d3 |
children |
comparison
equal
deleted
inserted
replaced
100:793467b5e61c | 101:c530137014c0 |
---|---|
26 struct bad_visit | 26 struct bad_visit |
27 : std::exception | 27 : std::exception |
28 { | 28 { |
29 public: // std::exception interface | 29 public: // std::exception interface |
30 | 30 |
31 virtual const char * what() const throw() | 31 virtual const char * what() const BOOST_NOEXCEPT_OR_NOTHROW |
32 { | 32 { |
33 return "boost::bad_visit: " | 33 return "boost::bad_visit: " |
34 "failed visitation using boost::apply_visitor"; | 34 "failed visitation using boost::apply_visitor"; |
35 } | 35 } |
36 | 36 |