diff options
author | David Robillard <d@drobilla.net> | 2008-11-29 03:54:07 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-11-29 03:54:07 +0000 |
commit | 29cae159548aa2d745f4b51c60cbd494a35d1739 (patch) | |
tree | 0c75b45150697a072a287c00f0bba408280c1013 | |
parent | e1576e203924d8413375a53a9100c0e80aefaa15 (diff) | |
download | raul-29cae159548aa2d745f4b51c60cbd494a35d1739.tar.gz raul-29cae159548aa2d745f4b51c60cbd494a35d1739.tar.bz2 raul-29cae159548aa2d745f4b51c60cbd494a35d1739.zip |
Fix local includes to use quotes (to always build against local version).
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@1824 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | tests/atomic_test.cpp | 4 | ||||
-rw-r--r-- | tests/list_test.cpp | 2 | ||||
-rw-r--r-- | tests/path_test.cpp | 2 | ||||
-rw-r--r-- | tests/quantize_test.cpp | 2 | ||||
-rw-r--r-- | tests/smf_test.cpp | 4 | ||||
-rw-r--r-- | tests/table_test.cpp | 6 | ||||
-rw-r--r-- | tests/thread_test.cpp | 2 | ||||
-rw-r--r-- | tests/time_test.cpp | 4 |
8 files changed, 13 insertions, 13 deletions
diff --git a/tests/atomic_test.cpp b/tests/atomic_test.cpp index caa6395..6611c91 100644 --- a/tests/atomic_test.cpp +++ b/tests/atomic_test.cpp @@ -1,6 +1,6 @@ #include <iostream> -#include <raul/AtomicInt.hpp> -#include <raul/AtomicPtr.hpp> +#include "raul/AtomicInt.hpp" +#include "raul/AtomicPtr.hpp" using namespace std; using namespace Raul; diff --git a/tests/list_test.cpp b/tests/list_test.cpp index 44470fe..c3909a1 100644 --- a/tests/list_test.cpp +++ b/tests/list_test.cpp @@ -1,6 +1,6 @@ #include <iostream> #include <cstddef> -#include <raul/List.hpp> +#include "raul/List.hpp" using namespace std; using namespace Raul; diff --git a/tests/path_test.cpp b/tests/path_test.cpp index 3565918..3bd14c9 100644 --- a/tests/path_test.cpp +++ b/tests/path_test.cpp @@ -1,6 +1,6 @@ #include <iostream> #include <list> -#include <raul/Path.hpp> +#include "raul/Path.hpp" using namespace std; using namespace Raul; diff --git a/tests/quantize_test.cpp b/tests/quantize_test.cpp index b4c8725..49e3fbd 100644 --- a/tests/quantize_test.cpp +++ b/tests/quantize_test.cpp @@ -1,4 +1,4 @@ -#include <raul/Quantizer.hpp> +#include "raul/Quantizer.hpp" #include <iostream> using namespace std; diff --git a/tests/smf_test.cpp b/tests/smf_test.cpp index 3ac0894..40465ed 100644 --- a/tests/smf_test.cpp +++ b/tests/smf_test.cpp @@ -1,7 +1,7 @@ #include <iostream> #include <string> -#include <raul/SMFReader.hpp> -#include <raul/SMFWriter.hpp> +#include "raul/SMFReader.hpp" +#include "raul/SMFWriter.hpp" using namespace std; using namespace Raul; diff --git a/tests/table_test.cpp b/tests/table_test.cpp index 3fdde92..d5d0610 100644 --- a/tests/table_test.cpp +++ b/tests/table_test.cpp @@ -4,9 +4,9 @@ #include <map> #include <set> #include <sys/time.h> -#include <raul/PathTable.hpp> -#include <raul/Table.hpp> -#include <raul/TableImpl.hpp> +#include "raul/PathTable.hpp" +#include "raul/Table.hpp" +#include "raul/TableImpl.hpp" //#define WITH_TR1 1 diff --git a/tests/thread_test.cpp b/tests/thread_test.cpp index eb06701..fd7a411 100644 --- a/tests/thread_test.cpp +++ b/tests/thread_test.cpp @@ -1,5 +1,5 @@ #include <iostream> -#include <raul/Thread.hpp> +#include "raul/Thread.hpp" using namespace std; using namespace Raul; diff --git a/tests/time_test.cpp b/tests/time_test.cpp index a84993b..4757f6b 100644 --- a/tests/time_test.cpp +++ b/tests/time_test.cpp @@ -1,5 +1,5 @@ -#include <raul/TimeStamp.hpp> -#include <raul/TimeSlice.hpp> +#include "raul/TimeStamp.hpp" +#include "raul/TimeSlice.hpp" #include <iostream> using namespace std; |