diff options
author | yazevnul <yazevnul@yandex-team.ru> | 2022-02-10 16:46:46 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:46 +0300 |
commit | 8cbc307de0221f84c80c42dcbe07d40727537e2c (patch) | |
tree | 625d5a673015d1df891e051033e9fcde5c7be4e5 /contrib/libs/cxxsupp | |
parent | 30d1ef3941e0dc835be7609de5ebee66958f215a (diff) | |
download | ydb-8cbc307de0221f84c80c42dcbe07d40727537e2c.tar.gz |
Restoring authorship annotation for <yazevnul@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/libs/cxxsupp')
-rw-r--r-- | contrib/libs/cxxsupp/libcxx/include/iosfwd | 2 | ||||
-rw-r--r-- | contrib/libs/cxxsupp/libcxx/include/stlfwd | 36 |
2 files changed, 19 insertions, 19 deletions
diff --git a/contrib/libs/cxxsupp/libcxx/include/iosfwd b/contrib/libs/cxxsupp/libcxx/include/iosfwd index 477dd97260..b31529ce6e 100644 --- a/contrib/libs/cxxsupp/libcxx/include/iosfwd +++ b/contrib/libs/cxxsupp/libcxx/include/iosfwd @@ -250,7 +250,7 @@ typedef basic_string<char, char_traits<char>, allocator<char> > string; #ifndef _LIBCPP_HAS_NO_WIDE_CHARACTERS typedef basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > wstring; #endif -typedef basic_string<char16_t, char_traits<char16_t>, allocator<char16_t> > u16string; +typedef basic_string<char16_t, char_traits<char16_t>, allocator<char16_t> > u16string; template <class _CharT, class _Traits, class _Allocator> class _LIBCPP_PREFERRED_NAME(string) _LIBCPP_IF_WIDE_CHARACTERS(_LIBCPP_PREFERRED_NAME(wstring)) basic_string; diff --git a/contrib/libs/cxxsupp/libcxx/include/stlfwd b/contrib/libs/cxxsupp/libcxx/include/stlfwd index adad6790dc..3913623f98 100644 --- a/contrib/libs/cxxsupp/libcxx/include/stlfwd +++ b/contrib/libs/cxxsupp/libcxx/include/stlfwd @@ -1,13 +1,13 @@ #pragma once -#include <__config> +#include <__config> #include <cstddef> -#include <iosfwd> - -#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) -#pragma GCC system_header -#endif +#include <iosfwd> +#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) +#pragma GCC system_header +#endif + _LIBCPP_BEGIN_NAMESPACE_STD template <class F, class S> @@ -42,18 +42,18 @@ _LIBCPP_BEGIN_NAMESPACE_STD constexpr void get(...) = delete; - template <class> - class _LIBCPP_TEMPLATE_VIS function; - - template <class _Tp> - struct _LIBCPP_TEMPLATE_VIS default_delete; - - template <class _Tp, class Deleter = default_delete<_Tp>> - class _LIBCPP_TEMPLATE_VIS unique_ptr; - - template <class T> - class _LIBCPP_TEMPLATE_VIS shared_ptr; - + template <class> + class _LIBCPP_TEMPLATE_VIS function; + + template <class _Tp> + struct _LIBCPP_TEMPLATE_VIS default_delete; + + template <class _Tp, class Deleter = default_delete<_Tp>> + class _LIBCPP_TEMPLATE_VIS unique_ptr; + + template <class T> + class _LIBCPP_TEMPLATE_VIS shared_ptr; + /* basic_string is already forward-declared in <iosfwd> */ template<class T, class Traits> |