aboutsummaryrefslogtreecommitdiffstats
path: root/util/generic/serialized_enum.h
diff options
context:
space:
mode:
authorAnton Samokhvalov <pg83@yandex.ru>2022-02-10 16:45:17 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:45:17 +0300
commitd3a398281c6fd1d3672036cb2d63f842d2cb28c5 (patch)
treedd4bd3ca0f36b817e96812825ffaf10d645803f2 /util/generic/serialized_enum.h
parent72cb13b4aff9bc9cf22e49251bc8fd143f82538f (diff)
downloadydb-d3a398281c6fd1d3672036cb2d63f842d2cb28c5.tar.gz
Restoring authorship annotation for Anton Samokhvalov <pg83@yandex.ru>. Commit 2 of 2.
Diffstat (limited to 'util/generic/serialized_enum.h')
-rw-r--r--util/generic/serialized_enum.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/util/generic/serialized_enum.h b/util/generic/serialized_enum.h
index fb847701b0..79df2bac22 100644
--- a/util/generic/serialized_enum.h
+++ b/util/generic/serialized_enum.h
@@ -29,7 +29,7 @@ in your ya.make
* @tparam EnumT enum type
*/
template <typename EnumT>
-Y_CONST_FUNCTION constexpr size_t GetEnumItemsCount();
+Y_CONST_FUNCTION constexpr size_t GetEnumItemsCount();
namespace NEnumSerializationRuntime {
namespace NDetail {
@@ -89,7 +89,7 @@ namespace NEnumSerializationRuntime {
* @tparam EnumT enum type
*/
template <typename EnumT>
-Y_CONST_FUNCTION ::NEnumSerializationRuntime::TMappedDictView<EnumT, TString> GetEnumNames() {
+Y_CONST_FUNCTION ::NEnumSerializationRuntime::TMappedDictView<EnumT, TString> GetEnumNames() {
return ::NEnumSerializationRuntime::GetEnumNamesImpl<EnumT>();
}
@@ -99,7 +99,7 @@ Y_CONST_FUNCTION ::NEnumSerializationRuntime::TMappedDictView<EnumT, TString> Ge
* @tparam EnumT enum type
*/
template <typename EnumT>
-Y_CONST_FUNCTION ::NEnumSerializationRuntime::TMappedArrayView<EnumT> GetEnumAllValues() {
+Y_CONST_FUNCTION ::NEnumSerializationRuntime::TMappedArrayView<EnumT> GetEnumAllValues() {
return ::NEnumSerializationRuntime::GetEnumAllValuesImpl<EnumT>();
}
@@ -109,7 +109,7 @@ Y_CONST_FUNCTION ::NEnumSerializationRuntime::TMappedArrayView<EnumT> GetEnumAll
* @tparam EnumT enum type
*/
template <typename EnumT>
-Y_CONST_FUNCTION const TString& GetEnumAllNames() {
+Y_CONST_FUNCTION const TString& GetEnumAllNames() {
return ::NEnumSerializationRuntime::GetEnumAllNamesImpl<EnumT>();
}
@@ -119,7 +119,7 @@ Y_CONST_FUNCTION const TString& GetEnumAllNames() {
* @tparam EnumT enum type
*/
template <typename EnumT>
-Y_CONST_FUNCTION const TVector<TString>& GetEnumAllCppNames() {
+Y_CONST_FUNCTION const TVector<TString>& GetEnumAllCppNames() {
return ::NEnumSerializationRuntime::GetEnumAllCppNamesImpl<EnumT>();
}
@@ -247,7 +247,7 @@ namespace NEnumSerializationRuntime {
return Ref.size();
}
- Y_PURE_FUNCTION bool empty() const {
+ Y_PURE_FUNCTION bool empty() const {
return Ref.empty();
}
@@ -370,7 +370,7 @@ namespace NEnumSerializationRuntime {
return Ref.size();
}
- Y_PURE_FUNCTION bool empty() const {
+ Y_PURE_FUNCTION bool empty() const {
return Ref.empty();
}