diff options
author | Howard Hinnant <hhinnant@apple.com> | 2011-06-30 21:18:19 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2011-06-30 21:18:19 +0000 |
commit | ce48a1137d56d368828d360e5f2a8162bac6517c (patch) | |
tree | ec224d56b3d3a54fafbd14126993b38671f4ebec /libcxx/src/regex.cpp | |
parent | 070f96c567f7b0b3a0aa03178d2b6f05cdb2e447 (diff) | |
download | bcm5719-llvm-ce48a1137d56d368828d360e5f2a8162bac6517c.tar.gz bcm5719-llvm-ce48a1137d56d368828d360e5f2a8162bac6517c.zip |
_STD -> _VSTD to avoid macro clash on windows
llvm-svn: 134190
Diffstat (limited to 'libcxx/src/regex.cpp')
-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 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) { |