War on tabs
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@187906 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -4111,29 +4111,29 @@ namespace literals
|
||||
{
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user