From ebd5dcd25d8fedce275455f11cf8d7e57f41b50f Mon Sep 17 00:00:00 2001 From: Tyler Veness Date: Tue, 23 Jun 2026 17:10:00 -0700 Subject: [PATCH] [hal] Include-what-you-use in REVPH.cpp (#9023) This fixes another compiler error in #9018. --- hal/src/main/native/systemcore/REVPH.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hal/src/main/native/systemcore/REVPH.cpp b/hal/src/main/native/systemcore/REVPH.cpp index b6c357aa91..f9c66f598c 100644 --- a/hal/src/main/native/systemcore/REVPH.cpp +++ b/hal/src/main/native/systemcore/REVPH.cpp @@ -4,6 +4,11 @@ #include "wpi/hal/REVPH.h" +#include + +#include +#include +#include #include #include @@ -13,9 +18,13 @@ #include "PortsInternal.hpp" #include "rev/PHFrames.h" #include "wpi/hal/CANAPI.h" +#include "wpi/hal/CANAPITypes.h" #include "wpi/hal/ErrorHandling.hpp" #include "wpi/hal/Errors.h" +#include "wpi/hal/Types.h" +#include "wpi/hal/handles/HandlesInternal.hpp" #include "wpi/hal/handles/IndexedHandleResource.hpp" +#include "wpi/util/mutex.hpp" using namespace wpi::hal;