From 0521d8504806d242aa8b376636d2fba503a667a8 Mon Sep 17 00:00:00 2001 From: Tyler Veness Date: Sat, 21 Oct 2017 15:28:46 -0700 Subject: [PATCH] Moved comment after include line so include order is determined properly (#680) --- hal/src/main/native/athena/Notifier.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/hal/src/main/native/athena/Notifier.cpp b/hal/src/main/native/athena/Notifier.cpp index 95b578e141..18aa2816ea 100644 --- a/hal/src/main/native/athena/Notifier.cpp +++ b/hal/src/main/native/athena/Notifier.cpp @@ -7,20 +7,19 @@ #include "HAL/Notifier.h" -// For std::atexit() -#include - #include +#include // For std::atexit() #include #include +#include + #include "HAL/ChipObject.h" #include "HAL/Errors.h" #include "HAL/HAL.h" #include "HAL/cpp/NotifierInternal.h" #include "HAL/cpp/make_unique.h" #include "HAL/handles/UnlimitedHandleResource.h" -#include "support/SafeThread.h" using namespace hal;