diff --git a/wpilibc/src/main/native/include/frc/event/EventLoop.h b/wpilibc/src/main/native/include/frc/event/EventLoop.h index f2b82cb3e2..8b0daf8da1 100644 --- a/wpilibc/src/main/native/include/frc/event/EventLoop.h +++ b/wpilibc/src/main/native/include/frc/event/EventLoop.h @@ -5,10 +5,9 @@ #pragma once #include -#include +#include #include -#include namespace frc { /** The loop polling BooleanEvent objects and executing the actions bound to @@ -43,6 +42,6 @@ class EventLoop { void Poll(); }; - std::list m_bindings; + std::vector m_bindings; }; } // namespace frc