aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/cxxsupp
diff options
context:
space:
mode:
authoryazevnul <yazevnul@yandex-team.ru>2022-02-10 16:46:48 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:48 +0300
commit9abfb1a53b7f7b791444d1378e645d8fad9b06ed (patch)
tree49e222ea1c5804306084bb3ae065bb702625360f /contrib/libs/cxxsupp
parent8cbc307de0221f84c80c42dcbe07d40727537e2c (diff)
downloadydb-9abfb1a53b7f7b791444d1378e645d8fad9b06ed.tar.gz
Restoring authorship annotation for <yazevnul@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/libs/cxxsupp')
-rw-r--r--contrib/libs/cxxsupp/libcxx/include/iosfwd2
-rw-r--r--contrib/libs/cxxsupp/libcxx/include/stlfwd36
2 files changed, 19 insertions, 19 deletions
diff --git a/contrib/libs/cxxsupp/libcxx/include/iosfwd b/contrib/libs/cxxsupp/libcxx/include/iosfwd
index b31529ce6e..477dd97260 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 3913623f98..adad6790dc 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>
+#include <iosfwd>
+
+#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
+#pragma GCC system_header
+#endif
-#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>