From ff0d618c7f55a610018d07ea8e090e8b285dea6c Mon Sep 17 00:00:00 2001 From: Chad Austin Date: Tue, 18 Jul 2023 15:38:52 -0700 Subject: [PATCH] add a missing include (#11624) Summary: Pull Request resolved: https://github.com/facebook/rocksdb/pull/11624 must be included to use std::queue. Reviewed By: pdillinger Differential Revision: D47562433 fbshipit-source-id: 7c5b19fd9e411694c782dfc0dff0231d4f92ef24 --- util/single_thread_executor.h | 1 + 1 file changed, 1 insertion(+) diff --git a/util/single_thread_executor.h b/util/single_thread_executor.h index c69f2a292..652be5052 100644 --- a/util/single_thread_executor.h +++ b/util/single_thread_executor.h @@ -8,6 +8,7 @@ #if USE_COROUTINES #include +#include #include "folly/CPortability.h" #include "folly/CppAttributes.h"