diff options
author | Eric Fiselier <eric@efcs.ca> | 2016-06-14 05:47:46 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2016-06-14 05:47:46 +0000 |
commit | d046d5422addf47472087f258a871285caf705f4 (patch) | |
tree | fd3579ef57b9cf8028353bac65831b3e9a4c7774 /libcxx/test/std/re/re.regex/re.regex.construct | |
parent | 9275b21947c53250f7e3bf97cc095f7683f6afc5 (diff) | |
download | bcm5719-llvm-d046d5422addf47472087f258a871285caf705f4.tar.gz bcm5719-llvm-d046d5422addf47472087f258a871285caf705f4.zip |
Avoid octal escape sequence warning with MSVC. Patch from STL@microsoft.com
llvm-svn: 272639
Diffstat (limited to 'libcxx/test/std/re/re.regex/re.regex.construct')
-rw-r--r-- | libcxx/test/std/re/re.regex/re.regex.construct/awk_oct.pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/std/re/re.regex/re.regex.construct/awk_oct.pass.cpp b/libcxx/test/std/re/re.regex/re.regex.construct/awk_oct.pass.cpp index e315fb88d1e..3f1eaf6b959 100644 --- a/libcxx/test/std/re/re.regex/re.regex.construct/awk_oct.pass.cpp +++ b/libcxx/test/std/re/re.regex/re.regex.construct/awk_oct.pass.cpp @@ -25,5 +25,5 @@ int main() assert(std::regex_match("\4", std::regex("\\4", awk))); assert(std::regex_match("\41", std::regex("\\41", awk))); assert(std::regex_match("\141", std::regex("\\141", awk))); - assert(std::regex_match("\1411", std::regex("\\1411", awk))); + assert(std::regex_match("\141" "1", std::regex("\\1411", awk))); } |