diff options
| author | Andrey Khalyavin <[email protected]> | 2022-02-10 16:46:30 +0300 | 
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:46:30 +0300 | 
| commit | 4b839d0704ee9be1dabb0310a1f03af24963637b (patch) | |
| tree | 1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /contrib/libs/cxxsupp/libcxx/include/__functional/binder1st.h | |
| parent | f773626848a7c7456803654292e716b83d69cc12 (diff) | |
Restoring authorship annotation for Andrey Khalyavin <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'contrib/libs/cxxsupp/libcxx/include/__functional/binder1st.h')
| -rw-r--r-- | contrib/libs/cxxsupp/libcxx/include/__functional/binder1st.h | 108 | 
1 files changed, 54 insertions, 54 deletions
diff --git a/contrib/libs/cxxsupp/libcxx/include/__functional/binder1st.h b/contrib/libs/cxxsupp/libcxx/include/__functional/binder1st.h index 6e93c9dcaa2..5dd8f5cf015 100644 --- a/contrib/libs/cxxsupp/libcxx/include/__functional/binder1st.h +++ b/contrib/libs/cxxsupp/libcxx/include/__functional/binder1st.h @@ -1,54 +1,54 @@ -// -*- C++ -*-  -//===----------------------------------------------------------------------===//  -//  -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.  -// See https://llvm.org/LICENSE.txt for license information.  -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception  -//  -//===----------------------------------------------------------------------===//  -  -#ifndef _LIBCPP___FUNCTIONAL_BINDER1ST_H  -#define _LIBCPP___FUNCTIONAL_BINDER1ST_H  -  -#include <__config>  -#include <__functional/unary_function.h>  -  -#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)  -#pragma GCC system_header  -#endif  -  -_LIBCPP_BEGIN_NAMESPACE_STD  -  -#if _LIBCPP_STD_VER <= 14 || defined(_LIBCPP_ENABLE_CXX17_REMOVED_BINDERS)  -  -template <class __Operation>  -class _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX11 binder1st  -    : public unary_function<typename __Operation::second_argument_type,  -                            typename __Operation::result_type>  -{  -protected:  -    __Operation                               op;  -    typename __Operation::first_argument_type value;  -public:  -    _LIBCPP_INLINE_VISIBILITY binder1st(const __Operation& __x,  -                               const typename __Operation::first_argument_type __y)  -        : op(__x), value(__y) {}  -    _LIBCPP_INLINE_VISIBILITY typename __Operation::result_type operator()  -        (typename __Operation::second_argument_type& __x) const  -            {return op(value, __x);}  -    _LIBCPP_INLINE_VISIBILITY typename __Operation::result_type operator()  -        (const typename __Operation::second_argument_type& __x) const  -            {return op(value, __x);}  -};  -  -template <class __Operation, class _Tp>  -_LIBCPP_DEPRECATED_IN_CXX11 inline _LIBCPP_INLINE_VISIBILITY  -binder1st<__Operation>  -bind1st(const __Operation& __op, const _Tp& __x)  -    {return binder1st<__Operation>(__op, __x);}  -  -#endif // _LIBCPP_STD_VER <= 14 || defined(_LIBCPP_ENABLE_CXX17_REMOVED_BINDERS)  -  -_LIBCPP_END_NAMESPACE_STD  -  -#endif // _LIBCPP___FUNCTIONAL_BINDER1ST_H  +// -*- C++ -*- +//===----------------------------------------------------------------------===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// + +#ifndef _LIBCPP___FUNCTIONAL_BINDER1ST_H +#define _LIBCPP___FUNCTIONAL_BINDER1ST_H + +#include <__config> +#include <__functional/unary_function.h> + +#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) +#pragma GCC system_header +#endif + +_LIBCPP_BEGIN_NAMESPACE_STD + +#if _LIBCPP_STD_VER <= 14 || defined(_LIBCPP_ENABLE_CXX17_REMOVED_BINDERS) + +template <class __Operation> +class _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX11 binder1st +    : public unary_function<typename __Operation::second_argument_type, +                            typename __Operation::result_type> +{ +protected: +    __Operation                               op; +    typename __Operation::first_argument_type value; +public: +    _LIBCPP_INLINE_VISIBILITY binder1st(const __Operation& __x, +                               const typename __Operation::first_argument_type __y) +        : op(__x), value(__y) {} +    _LIBCPP_INLINE_VISIBILITY typename __Operation::result_type operator() +        (typename __Operation::second_argument_type& __x) const +            {return op(value, __x);} +    _LIBCPP_INLINE_VISIBILITY typename __Operation::result_type operator() +        (const typename __Operation::second_argument_type& __x) const +            {return op(value, __x);} +}; + +template <class __Operation, class _Tp> +_LIBCPP_DEPRECATED_IN_CXX11 inline _LIBCPP_INLINE_VISIBILITY +binder1st<__Operation> +bind1st(const __Operation& __op, const _Tp& __x) +    {return binder1st<__Operation>(__op, __x);} + +#endif // _LIBCPP_STD_VER <= 14 || defined(_LIBCPP_ENABLE_CXX17_REMOVED_BINDERS) + +_LIBCPP_END_NAMESPACE_STD + +#endif // _LIBCPP___FUNCTIONAL_BINDER1ST_H  | 
