diff options
Diffstat (limited to 'libcxx/src')
-rw-r--r-- | libcxx/src/regex.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/src/regex.cpp b/libcxx/src/regex.cpp index 6d9f06e..9dc0c69 100644 --- a/libcxx/src/regex.cpp +++ b/libcxx/src/regex.cpp @@ -323,8 +323,8 @@ const classnames ClassNames[] = { {"xdigit", ctype_base::xdigit}}; struct use_strcmp { - bool operator()(const collationnames& x, const char* y) const { return strcmp(x.elem_, y) < 0; } - bool operator()(const classnames& x, const char* y) const { return strcmp(x.elem_, y) < 0; } + bool operator()(const collationnames& x, const char* y) { return strcmp(x.elem_, y) < 0; } + bool operator()(const classnames& x, const char* y) { return strcmp(x.elem_, y) < 0; } }; } // namespace |