diff options
author | Mikhnenko Sasha <78651190+4JustMe4@users.noreply.github.com> | 2024-01-23 16:56:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-23 16:56:23 +0100 |
commit | 9692b5b65c92c840426b78e5c350427e12e5e6d9 (patch) | |
tree | 5b6997bf6d106dd5463205eb77d1f1d39d7859d7 | |
parent | 0d6bce5992d52eae016bbc562a52bac587ec1039 (diff) | |
download | ydb-9692b5b65c92c840426b78e5c350427e12e5e6d9.tar.gz |
Add missing <cstddef> include (#1233)
-rw-r--r-- | ydb/core/util/btree.h | 1 | ||||
-rw-r--r-- | ydb/core/util/btree_common.h | 2 |
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 { /** |