diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2016-03-08 15:45:06 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2016-03-08 15:45:06 +0000 |
commit | 49738fe10bc66d0db887c1f876576d75f21f8ffd (patch) | |
tree | ab8281bded8501d9e83c6a2deed653b8526fd1ee /libcxx/test/std/strings/basic.string/string.ops | |
parent | dd1729fe8a854b79e8d699da61eb749195c1fac5 (diff) | |
download | bcm5719-llvm-49738fe10bc66d0db887c1f876576d75f21f8ffd.tar.gz bcm5719-llvm-49738fe10bc66d0db887c1f876576d75f21f8ffd.zip |
Remove a couple tabs that crept in
llvm-svn: 262932
Diffstat (limited to 'libcxx/test/std/strings/basic.string/string.ops')
-rw-r--r-- | libcxx/test/std/strings/basic.string/string.ops/string.accessors/data.pass.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/std/strings/basic.string/string.ops/string.accessors/data.pass.cpp b/libcxx/test/std/strings/basic.string/string.ops/string.accessors/data.pass.cpp index 9b9523e57d8..9b66cb00499 100644 --- a/libcxx/test/std/strings/basic.string/string.ops/string.accessors/data.pass.cpp +++ b/libcxx/test/std/strings/basic.string/string.ops/string.accessors/data.pass.cpp @@ -67,12 +67,12 @@ int main() } #endif #if TEST_STD_VER > 14 - { + { typedef std::string S; S s1(""); test_nonconst(s1); S s2("abcde"); test_nonconst(s2); S s3("abcdefghij"); test_nonconst(s3); S s4("abcdefghijklmnopqrst"); test_nonconst(s4); - } + } #endif } |