From dea6ccba258f8ae58f2af4a9b1be749cbc1f91b7 Mon Sep 17 00:00:00 2001 From: MediaPipe Team Date: Thu, 31 Aug 2023 21:50:07 -0700 Subject: [PATCH] Remove unnecessary includes in threadpool_std_thread_impl.cc. The windows.h was causing conflicts with LOG. Also the the posix headers weren't needed because the code doesn't use OS specific code anymore. PiperOrigin-RevId: 561848229 --- mediapipe/framework/deps/threadpool_std_thread_impl.cc | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/mediapipe/framework/deps/threadpool_std_thread_impl.cc b/mediapipe/framework/deps/threadpool_std_thread_impl.cc index 4ef959dc..a5f86eeb 100644 --- a/mediapipe/framework/deps/threadpool_std_thread_impl.cc +++ b/mediapipe/framework/deps/threadpool_std_thread_impl.cc @@ -17,18 +17,10 @@ #include // NOLINT(build/c++11) -#include "mediapipe/framework/deps/threadpool.h" - -#ifdef _WIN32 -#include -#else -#include -#include -#endif - #include "absl/log/absl_log.h" #include "absl/strings/str_cat.h" #include "absl/strings/str_join.h" +#include "mediapipe/framework/deps/threadpool.h" namespace mediapipe {