forked from boostorg/regex
Fix exception specification and msvc warning push/pop.
This commit is contained in:
@ -52,7 +52,7 @@ class BOOST_REGEX_DECL regex_error : public std::runtime_error
|
||||
public:
|
||||
explicit regex_error(const std::string& s, regex_constants::error_type err = regex_constants::error_unknown, std::ptrdiff_t pos = 0);
|
||||
explicit regex_error(regex_constants::error_type err);
|
||||
~regex_error() BOOST_NOEXCEPT;
|
||||
~regex_error() BOOST_NOEXCEPT_OR_NOTHROW;
|
||||
regex_constants::error_type code()const
|
||||
{ return m_error_code; }
|
||||
std::ptrdiff_t position()const
|
||||
|
Reference in New Issue
Block a user