aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/streams
diff options
context:
space:
mode:
authorbreakneck <breakneck@yandex-team.ru>2022-02-10 16:47:58 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:47:58 +0300
commitf860932520ce9bc8540a3c19e84c0109c3437dc5 (patch)
treec0748b5dcbade83af788c0abfa89c0383d6b779c /library/cpp/streams
parente2021f9a0e54d13b7c48796318b13b66dc625e74 (diff)
downloadydb-f860932520ce9bc8540a3c19e84c0109c3437dc5.tar.gz
Restoring authorship annotation for <breakneck@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/streams')
-rw-r--r--library/cpp/streams/zc_memory_input/zc_memory_input.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/streams/zc_memory_input/zc_memory_input.h b/library/cpp/streams/zc_memory_input/zc_memory_input.h
index 61a6686894..c939d8e426 100644
--- a/library/cpp/streams/zc_memory_input/zc_memory_input.h
+++ b/library/cpp/streams/zc_memory_input/zc_memory_input.h
@@ -21,7 +21,7 @@ public:
}
/// if there's 'size' data read it, otherwise just return false
- Y_FORCE_INLINE bool ReadFixed(const char*& buf, size_t size) {
+ Y_FORCE_INLINE bool ReadFixed(const char*& buf, size_t size) {
if (Avail() >= size) {
buf = Buf();
Reset(Buf() + size, Avail() - size);
@@ -42,7 +42,7 @@ public:
}
template <class T>
- Y_FORCE_INLINE void ReadPOD(T& x) {
+ Y_FORCE_INLINE void ReadPOD(T& x) {
x = LoadPOD<T>();
}
};