mirror of
https://github.com/boostorg/regex.git
synced 2025-07-23 09:07:25 +02:00
@ -368,8 +368,6 @@ struct BaseRegexConcept
|
|||||||
|
|
||||||
// access:
|
// access:
|
||||||
const Regex ce;
|
const Regex ce;
|
||||||
bool b = ce.empty();
|
|
||||||
ignore_unused_variable_warning(b);
|
|
||||||
unsigned i = ce.mark_count();
|
unsigned i = ce.mark_count();
|
||||||
ignore_unused_variable_warning(i);
|
ignore_unused_variable_warning(i);
|
||||||
m_flags = ce.flags();
|
m_flags = ce.flags();
|
||||||
@ -806,6 +804,8 @@ struct BoostRegexConcept
|
|||||||
ignore_unused_variable_warning(i2);
|
ignore_unused_variable_warning(i2);
|
||||||
bool b = ce == ce2;
|
bool b = ce == ce2;
|
||||||
ignore_unused_variable_warning(b);
|
ignore_unused_variable_warning(b);
|
||||||
|
b = ce.empty();
|
||||||
|
ignore_unused_variable_warning(b);
|
||||||
b = ce != ce2;
|
b = ce != ce2;
|
||||||
ignore_unused_variable_warning(b);
|
ignore_unused_variable_warning(b);
|
||||||
b = ce < ce2;
|
b = ce < ce2;
|
||||||
|
Reference in New Issue
Block a user