Remove a couple tabs that crept in
authorMarshall Clow <mclow.lists@gmail.com>
Tue, 8 Mar 2016 15:45:06 +0000 (15:45 +0000)
committerMarshall Clow <mclow.lists@gmail.com>
Tue, 8 Mar 2016 15:45:06 +0000 (15:45 +0000)
llvm-svn: 262932

libcxx/test/std/strings/basic.string/string.ops/string.accessors/data.pass.cpp

index 9b9523e..9b66cb0 100644 (file)
@@ -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
 }