From fc58ec8e0f1735cdd6771b6b8fbb0c8257443706 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Sat, 12 May 2018 14:28:23 +1000 Subject: [PATCH] build: prefer local to system include directives --- test/kmeans.cpp | 2 +- test/traits.cpp | 4 ++-- thread/event_linux.cpp | 2 +- thread/flag_linux.cpp | 2 +- thread/semaphore_linux.cpp | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/test/kmeans.cpp b/test/kmeans.cpp index ceff7bac..fe653d76 100644 --- a/test/kmeans.cpp +++ b/test/kmeans.cpp @@ -2,7 +2,7 @@ #include "kmeans.hpp" -#include +#include "point.hpp" /////////////////////////////////////////////////////////////////////////////// diff --git a/test/traits.cpp b/test/traits.cpp index 7f87b278..cc7b6c31 100644 --- a/test/traits.cpp +++ b/test/traits.cpp @@ -1,5 +1,5 @@ -#include -#include +#include "tap.hpp" +#include "types/traits.hpp" #include diff --git a/thread/event_linux.cpp b/thread/event_linux.cpp index 64b832f6..da1dd885 100644 --- a/thread/event_linux.cpp +++ b/thread/event_linux.cpp @@ -16,12 +16,12 @@ #include "event.hpp" #include "../cast.hpp" +#include "../posix/except.hpp" #include #include #include #include -#include #include using util::thread::event; diff --git a/thread/flag_linux.cpp b/thread/flag_linux.cpp index 21700bda..66555765 100644 --- a/thread/flag_linux.cpp +++ b/thread/flag_linux.cpp @@ -16,12 +16,12 @@ #include "flag.hpp" #include "../cast.hpp" +#include "../posix/except.hpp" #include #include #include #include -#include #include using util::thread::flag; diff --git a/thread/semaphore_linux.cpp b/thread/semaphore_linux.cpp index f434fccc..9a2bf6fc 100644 --- a/thread/semaphore_linux.cpp +++ b/thread/semaphore_linux.cpp @@ -17,12 +17,12 @@ #include "semaphore.hpp" #include "../cast.hpp" +#include "../posix/except.hpp" #include #include #include #include -#include #include using util::thread::semaphore;