mirror of
https://github.com/boostorg/regex.git
synced 2025-07-16 13:52:17 +02:00
Made regex_error backwards compatible with Boost-1.32.
[SVN r30623]
This commit is contained in:
@ -40,7 +40,7 @@ namespace boost{
|
||||
class BOOST_REGEX_DECL regex_error : public std::runtime_error
|
||||
{
|
||||
public:
|
||||
explicit regex_error(const std::string& s, regex_constants::error_type err, std::ptrdiff_t pos);
|
||||
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() throw();
|
||||
regex_constants::error_type code()const
|
||||
|
Reference in New Issue
Block a user