aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/binsaver/class_factory.h
diff options
context:
space:
mode:
authorkartynnik <kartynnik@yandex-team.ru>2022-02-10 16:48:07 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:48:07 +0300
commitdf6128370874866447314ec18d8e67fc7bde40b4 (patch)
treeb222e5ac2e2e98872661c51ccceee5da0d291e13 /library/cpp/binsaver/class_factory.h
parentca2a705e6e39e85df30054d7e806e572de9cfe23 (diff)
downloadydb-df6128370874866447314ec18d8e67fc7bde40b4.tar.gz
Restoring authorship annotation for <kartynnik@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/binsaver/class_factory.h')
-rw-r--r--library/cpp/binsaver/class_factory.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/binsaver/class_factory.h b/library/cpp/binsaver/class_factory.h
index 7b95a974fc..e83512331b 100644
--- a/library/cpp/binsaver/class_factory.h
+++ b/library/cpp/binsaver/class_factory.h
@@ -63,15 +63,15 @@ public:
(void)p;
return VFT2TypeID(&typeid(TT));
}
-
+
void GetAllTypeIDs(TVector<int>& typeIds) const {
- typeIds.clear();
+ typeIds.clear();
for (typename CTypeNewHash::const_iterator iter = typeInfo.begin();
iter != typeInfo.end();
++iter) {
typeIds.push_back(iter->first);
- }
- }
+ }
+ }
};
////////////////////////////////////////////////////////////////////////////////////////////////////
template <class T>