From 97db1aaccea01ebfe8993e24870dc1d62ab3f4da Mon Sep 17 00:00:00 2001 From: Volodymyr Kysenko Date: Tue, 3 Dec 2024 10:16:05 -0800 Subject: [PATCH] Add missing header needed for std::find (#507) --- base/thread_pool.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/base/thread_pool.cc b/base/thread_pool.cc index f5fe5ffc..4acff9fa 100644 --- a/base/thread_pool.cc +++ b/base/thread_pool.cc @@ -1,5 +1,6 @@ #include "base/thread_pool.h" +#include #include #include #include