War on tabs

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@187906 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/include/string b/include/string
index 283be3a..83dc53a 100644
--- a/include/string
+++ b/include/string
@@ -4111,29 +4111,29 @@
 {
   inline namespace string_literals
   {
-	inline _LIBCPP_INLINE_VISIBILITY
-	basic_string<char> operator "" s( const char *__str, size_t __len )
-	{
-		return basic_string<char> (__str, __len);
-	}
+    inline _LIBCPP_INLINE_VISIBILITY
+    basic_string<char> operator "" s( const char *__str, size_t __len )
+    {
+        return basic_string<char> (__str, __len);
+    }
 
-	inline _LIBCPP_INLINE_VISIBILITY
-	basic_string<wchar_t> operator "" s( const wchar_t *__str, size_t __len )
-	{
-		return basic_string<wchar_t> (__str, __len);
-	}
+    inline _LIBCPP_INLINE_VISIBILITY
+    basic_string<wchar_t> operator "" s( const wchar_t *__str, size_t __len )
+    {
+        return basic_string<wchar_t> (__str, __len);
+    }
 
-	inline _LIBCPP_INLINE_VISIBILITY
-	basic_string<char16_t> operator "" s( const char16_t *__str, size_t __len )
-	{
-		return basic_string<char16_t> (__str, __len);
-	}
+    inline _LIBCPP_INLINE_VISIBILITY
+    basic_string<char16_t> operator "" s( const char16_t *__str, size_t __len )
+    {
+        return basic_string<char16_t> (__str, __len);
+    }
 
-	inline _LIBCPP_INLINE_VISIBILITY
-	basic_string<char32_t> operator "" s( const char32_t *__str, size_t __len )
-	{
-		return basic_string<char32_t> (__str, __len);
-	}
+    inline _LIBCPP_INLINE_VISIBILITY
+    basic_string<char32_t> operator "" s( const char32_t *__str, size_t __len )
+    {
+        return basic_string<char32_t> (__str, __len);
+    }
   }
 }
 #endif