War on tabs

llvm-svn: 187906
Cr-Mirrored-From: sso://chromium.googlesource.com/_direct/external/github.com/llvm/llvm-project
Cr-Mirrored-Commit: d098713aaf902ea7d4729b73f83af461dac45a0d
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