aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMikhnenko Sasha <78651190+4JustMe4@users.noreply.github.com>2024-01-23 16:56:23 +0100
committerGitHub <noreply@github.com>2024-01-23 16:56:23 +0100
commit9692b5b65c92c840426b78e5c350427e12e5e6d9 (patch)
tree5b6997bf6d106dd5463205eb77d1f1d39d7859d7
parent0d6bce5992d52eae016bbc562a52bac587ec1039 (diff)
downloadydb-9692b5b65c92c840426b78e5c350427e12e5e6d9.tar.gz
Add missing <cstddef> include (#1233)
-rw-r--r--ydb/core/util/btree.h1
-rw-r--r--ydb/core/util/btree_common.h2
2 files changed, 3 insertions, 0 deletions
diff --git a/ydb/core/util/btree.h b/ydb/core/util/btree.h
index 96c99b4ebd..2a7dbe3d9f 100644
--- a/ydb/core/util/btree.h
+++ b/ydb/core/util/btree.h
@@ -11,6 +11,7 @@
#include <util/system/yassert.h>
#include <atomic>
+#include <cstddef>
#include <vector>
namespace NKikimr {
diff --git a/ydb/core/util/btree_common.h b/ydb/core/util/btree_common.h
index 541da73903..e56f26825a 100644
--- a/ydb/core/util/btree_common.h
+++ b/ydb/core/util/btree_common.h
@@ -3,6 +3,8 @@
#include <util/generic/ylimits.h>
#include <util/system/compiler.h>
+#include <cstddef>
+
namespace NKikimr {
/**