summaryrefslogtreecommitdiffstats
path: root/libcxx/src/regex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/src/regex.cpp')
-rw-r--r--libcxx/src/regex.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/src/regex.cpp b/libcxx/src/regex.cpp
index a29ed733661..65e9f886dfb 100644
--- a/libcxx/src/regex.cpp
+++ b/libcxx/src/regex.cpp
@@ -229,7 +229,7 @@ string
__get_collation_name(const char* s)
{
const collationnames* i =
- _STD::lower_bound(begin(collatenames), end(collatenames), s, use_strcmp());
+ _VSTD::lower_bound(begin(collatenames), end(collatenames), s, use_strcmp());
string r;
if (i != end(collatenames) && strcmp(s, i->elem_) == 0)
r = char(i->char_);
@@ -240,7 +240,7 @@ ctype_base::mask
__get_classname(const char* s, bool __icase)
{
const classnames* i =
- _STD::lower_bound(begin(ClassNames), end(ClassNames), s, use_strcmp());
+ _VSTD::lower_bound(begin(ClassNames), end(ClassNames), s, use_strcmp());
ctype_base::mask r = 0;
if (i != end(ClassNames) && strcmp(s, i->elem_) == 0)
{
OpenPOWER on IntegriCloud