aboutsummaryrefslogtreecommitdiffstats
path: root/util/string/vector.h
diff options
context:
space:
mode:
authordanlark <danlark@yandex-team.ru>2022-02-10 16:46:10 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:10 +0300
commitbaa58daefa91fde4b4769facdbd2903763b9c6a8 (patch)
tree1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /util/string/vector.h
parent3426a9bc7f169ae9da54cef557ad2a33f6e8eee0 (diff)
downloadydb-baa58daefa91fde4b4769facdbd2903763b9c6a8.tar.gz
Restoring authorship annotation for <danlark@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/string/vector.h')
-rw-r--r--util/string/vector.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/util/string/vector.h b/util/string/vector.h
index 78e01efa08..e36c348bbe 100644
--- a/util/string/vector.h
+++ b/util/string/vector.h
@@ -1,7 +1,7 @@
#pragma once
#include "cast.h"
-#include "split.h"
+#include "split.h"
#include <util/generic/map.h>
#include <util/generic/strbuf.h>
@@ -13,7 +13,7 @@
#define KEEP_EMPTY_TOKENS 0x01
//
-// NOTE: Check StringSplitter below to get more convenient split string interface.
+// NOTE: Check StringSplitter below to get more convenient split string interface.
namespace NPrivate {
@@ -46,7 +46,7 @@ TVector<typename ::NPrivate::TStringDeducer<C>::type>
SplitString(const C* ptr, const C* delimiter,
size_t maxFields = 0, int options = 0) {
TVector<typename ::NPrivate::TStringDeducer<C>::type> res;
- ::NPrivate::SplitStringImpl(&res, ptr, delimiter, maxFields, options);
+ ::NPrivate::SplitStringImpl(&res, ptr, delimiter, maxFields, options);
return res;
}
@@ -55,7 +55,7 @@ TVector<typename ::NPrivate::TStringDeducer<C>::type>
SplitString(const C* ptr, size_t len, const C* delimiter,
size_t maxFields = 0, int options = 0) {
TVector<typename ::NPrivate::TStringDeducer<C>::type> res;
- ::NPrivate::SplitStringImpl(&res, ptr, len, delimiter, maxFields, options);
+ ::NPrivate::SplitStringImpl(&res, ptr, len, delimiter, maxFields, options);
return res;
}
@@ -63,7 +63,7 @@ template <typename C>
TVector<typename ::NPrivate::TStringDeducer<C>::type>
SplitString(const typename ::NPrivate::TStringDeducer<C>::type& str, const C* delimiter,
size_t maxFields = 0, int options = 0) {
- return SplitString(str.data(), str.size(), delimiter, maxFields, options);
+ return SplitString(str.data(), str.size(), delimiter, maxFields, options);
}
template <class TIter>