Skip to content

Commit

Permalink
Change order of #includes fixed build errors...
Browse files Browse the repository at this point in the history
I have no idea why exactly but the build errors only got fixed when I
changed the order of the includes in AHRSInputIOProcessor.hpp.
  • Loading branch information
mfs16101 committed May 8, 2020
1 parent 98e1ba6 commit 277cb31
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,15 @@
#ifndef AHRS_INPUT_IO_PROCESSOR_HPP
#define AHRS_INPUT_IO_PROCESSOR_HPP

#include <windows.h>
#include <iostream>


#include "IOProcessor.hpp"
#include "DataSyncThread.hpp"
#include "Attribute.hpp"

#include <windows.h>
#include <iostream>

class AHRSInputIOProcessor : public IOProcessor
{
public:
Expand Down

0 comments on commit 277cb31

Please sign in to comment.