forked from boostorg/regex
Fix signature to operator!=
[SVN r24499]
This commit is contained in:
@ -218,7 +218,7 @@ public:
|
|||||||
int BOOST_REGEX_CALL compare(const reg_expression&) const;
|
int BOOST_REGEX_CALL compare(const reg_expression&) const;
|
||||||
bool BOOST_REGEX_CALL operator==(const reg_expression& e)const
|
bool BOOST_REGEX_CALL operator==(const reg_expression& e)const
|
||||||
{ return compare(e) == 0; }
|
{ return compare(e) == 0; }
|
||||||
bool operator != (const basic_regex<charT, traits, Allocator>& e)
|
bool operator != (const reg_expression& e)
|
||||||
{ return compare(e) != 0; }
|
{ return compare(e) != 0; }
|
||||||
bool BOOST_REGEX_CALL operator<(const reg_expression& e)const
|
bool BOOST_REGEX_CALL operator<(const reg_expression& e)const
|
||||||
{ return compare(e) < 0; }
|
{ return compare(e) < 0; }
|
||||||
|
Reference in New Issue
Block a user