From 72694d047500a703357c051fd21655fbc3c04d89 Mon Sep 17 00:00:00 2001 From: "Adam C. Emerson" Date: Mon, 8 May 2023 10:06:16 -0400 Subject: [PATCH] Include needed As of GCC13 this has to be explicitly included. Signed-off-by: Adam C. Emerson --- table/block_based/data_block_hash_index.h | 1 + util/string_util.h | 1 + 2 files changed, 2 insertions(+) diff --git a/table/block_based/data_block_hash_index.h b/table/block_based/data_block_hash_index.h index f356395f..32152217 100644 --- a/table/block_based/data_block_hash_index.h +++ b/table/block_based/data_block_hash_index.h @@ -5,6 +5,7 @@ #pragma once +#include #include #include diff --git a/util/string_util.h b/util/string_util.h index 55d106ff..11178fd1 100644 --- a/util/string_util.h +++ b/util/string_util.h @@ -6,6 +6,7 @@ #pragma once +#include #include #include #include -- 2.47.3