From 277cb31b8c15d653ad5aac657b632fa43adeb773 Mon Sep 17 00:00:00 2001 From: Matt Scalzo Date: Fri, 8 May 2020 17:24:19 -0400 Subject: [PATCH] Change order of #includes fixed build errors... I have no idea why exactly but the build errors only got fixed when I changed the order of the includes in AHRSInputIOProcessor.hpp. --- .../breadcrumbs/include/AHRSInputIOProcessor.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bfs/implementations/breadcrumbs/include/AHRSInputIOProcessor.hpp b/bfs/implementations/breadcrumbs/include/AHRSInputIOProcessor.hpp index 728b646..97d268d 100644 --- a/bfs/implementations/breadcrumbs/include/AHRSInputIOProcessor.hpp +++ b/bfs/implementations/breadcrumbs/include/AHRSInputIOProcessor.hpp @@ -14,13 +14,15 @@ #ifndef AHRS_INPUT_IO_PROCESSOR_HPP #define AHRS_INPUT_IO_PROCESSOR_HPP -#include -#include + #include "IOProcessor.hpp" #include "DataSyncThread.hpp" #include "Attribute.hpp" +#include +#include + class AHRSInputIOProcessor : public IOProcessor { public: