aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/restricted
diff options
context:
space:
mode:
authorimdex <imdex@yandex-team.ru>2022-02-10 16:46:25 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:25 +0300
commitdcf462a7e38559d9ef8c9da23017940bdc125004 (patch)
tree1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /contrib/restricted
parent40c02afde4825ca0055ea0e5809693b656c70c30 (diff)
downloadydb-dcf462a7e38559d9ef8c9da23017940bdc125004.tar.gz
Restoring authorship annotation for <imdex@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/restricted')
-rw-r--r--contrib/restricted/boost/boost/beast/http/fields.hpp6
-rw-r--r--contrib/restricted/boost/boost/beast/http/impl/fields.ipp6
-rw-r--r--contrib/restricted/boost/boost/range/algorithm_ext/insert.hpp2
3 files changed, 7 insertions, 7 deletions
diff --git a/contrib/restricted/boost/boost/beast/http/fields.hpp b/contrib/restricted/boost/boost/beast/http/fields.hpp
index 6f4eb5fc66..e2f3847408 100644
--- a/contrib/restricted/boost/boost/beast/http/fields.hpp
+++ b/contrib/restricted/boost/boost/beast/http/fields.hpp
@@ -102,15 +102,15 @@ public:
value_type& operator=(value_type const&) = delete;
/// Returns the field enum, which can be @ref field::unknown
- field
+ field
name() const;
/// Returns the field name as a string
- string_view
+ string_view
name_string() const;
/// Returns the value of the field
- string_view
+ string_view
value() const;
};
diff --git a/contrib/restricted/boost/boost/beast/http/impl/fields.ipp b/contrib/restricted/boost/boost/beast/http/impl/fields.ipp
index d8f20336fb..24e3012e3a 100644
--- a/contrib/restricted/boost/boost/beast/http/impl/fields.ipp
+++ b/contrib/restricted/boost/boost/beast/http/impl/fields.ipp
@@ -293,7 +293,7 @@ value_type(
template<class Allocator>
inline
-field
+field
basic_fields<Allocator>::
value_type::
name() const
@@ -303,7 +303,7 @@ name() const
template<class Allocator>
inline
-string_view
+string_view
basic_fields<Allocator>::
value_type::
name_string() const
@@ -315,7 +315,7 @@ name_string() const
template<class Allocator>
inline
-string_view
+string_view
basic_fields<Allocator>::
value_type::
value() const
diff --git a/contrib/restricted/boost/boost/range/algorithm_ext/insert.hpp b/contrib/restricted/boost/boost/range/algorithm_ext/insert.hpp
index 5b73c9d0bb..51f1b8e579 100644
--- a/contrib/restricted/boost/boost/range/algorithm_ext/insert.hpp
+++ b/contrib/restricted/boost/boost/range/algorithm_ext/insert.hpp
@@ -39,7 +39,7 @@ inline Container& insert( Container& on, const Range& from )
BOOST_RANGE_CONCEPT_ASSERT(( ForwardRangeConcept<Container> ));
BOOST_RANGE_CONCEPT_ASSERT(( SinglePassRangeConcept<Range> ));
on.insert(boost::begin(from), boost::end(from));
- return on;
+ return on;
}
} // namespace range