From 9fff2679767f9d396e24798bc513975cf1fe558a Mon Sep 17 00:00:00 2001 From: Wyatt Hepler Date: Wed, 18 Dec 2024 21:38:49 -0800 Subject: [PATCH] pw_thread_stl: Remove unnecessary include MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes: b/362356045 Change-Id: If05bf658d54ffac83b647aeb4455175197bec85f Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/254953 Reviewed-by: Alexei Frolov Lint: Lint 🤖 Commit-Queue: Wyatt Hepler Docs-Not-Needed: Wyatt Hepler Pigweed-Auto-Submit: Wyatt Hepler --- pw_thread_stl/public/pw_thread_stl/options.h | 1 - pw_uart/blocking_adapter_test.cc | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/pw_thread_stl/public/pw_thread_stl/options.h b/pw_thread_stl/public/pw_thread_stl/options.h index aaa1d02b1b..3712099973 100644 --- a/pw_thread_stl/public/pw_thread_stl/options.h +++ b/pw_thread_stl/public/pw_thread_stl/options.h @@ -14,7 +14,6 @@ #pragma once #include "pw_thread/options.h" -#include "pw_thread/thread.h" // TODO: b/362356045 - Remove unnecessary include namespace pw::thread::stl { diff --git a/pw_uart/blocking_adapter_test.cc b/pw_uart/blocking_adapter_test.cc index ca3d983f88..0c6819a7d3 100644 --- a/pw_uart/blocking_adapter_test.cc +++ b/pw_uart/blocking_adapter_test.cc @@ -27,6 +27,7 @@ #include "pw_sync/mutex.h" #include "pw_sync/timed_thread_notification.h" #include "pw_thread/test_thread_context.h" +#include "pw_thread/thread.h" #include "pw_unit_test/framework.h" #include "pw_work_queue/work_queue.h"