From b7f3b136ccb77ff5ecdd5f49aec143e4f8a77e82 Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Sat, 4 May 2024 17:42:46 -0700 Subject: [PATCH] Add missing includes on linux --- RootSet.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/RootSet.cpp b/RootSet.cpp index 8943d3e..79b2996 100644 --- a/RootSet.cpp +++ b/RootSet.cpp @@ -169,8 +169,10 @@ RootSet::~RootSet() { } #ifdef ENABLE_ROOTSET_TESTS +#include #include #include +#include int main() { constexpr int kNumReaders = 3; @@ -211,4 +213,4 @@ int main() { t.join(); } } -#endif \ No newline at end of file +#endif