Browse Source

Add missing <cstddef> include (#1233)

Mikhnenko Sasha 1 year ago
parent
commit
9692b5b65c
2 changed files with 3 additions and 0 deletions
  1. 1 0
      ydb/core/util/btree.h
  2. 2 0
      ydb/core/util/btree_common.h

+ 1 - 0
ydb/core/util/btree.h

@@ -11,6 +11,7 @@
 #include <util/system/yassert.h>
 
 #include <atomic>
+#include <cstddef>
 #include <vector>
 
 namespace NKikimr {

+ 2 - 0
ydb/core/util/btree_common.h

@@ -3,6 +3,8 @@
 #include <util/generic/ylimits.h>
 #include <util/system/compiler.h>
 
+#include <cstddef>
+
 namespace NKikimr {
 
     /**