]> git.tdb.fi Git - libs/core.git/commitdiff
Avoid using relative paths beginning with .. in #includes
authorMikko Rasa <tdb@tdb.fi>
Wed, 8 Jun 2011 08:26:14 +0000 (11:26 +0300)
committerMikko Rasa <tdb@tdb.fi>
Wed, 8 Jun 2011 11:08:44 +0000 (14:08 +0300)
source/core/application.cpp
source/core/except.h
source/core/semaphore.h
source/debug/profiler.cpp
source/debug/profiler.h
source/debug/profilingscope.cpp
source/debug/profilingscope.h
source/time/timer.h

index 00ff9bea89e8af8bba5fd07fd8b2d426dccc12ed..6bfa6289f1174b604293c09464bd9746d783e46e 100644 (file)
@@ -4,7 +4,7 @@
 #include <signal.h>
 #include <iostream>
 #include <typeinfo>
-#include "../debug/demangle.h"
+#include <msp/debug/demangle.h>
 #include "application.h"
 #include "getopt.h"
 
index 9b65e711810334c314644fbea3762b3a1e3c788b..ed295f11cef6c50d7fb1c407a7c89852e2d8b2b6 100644 (file)
@@ -3,7 +3,7 @@
 
 #include <exception>
 #include <string>
-#include "../debug/backtrace.h"
+#include <msp/debug/backtrace.h>
 
 namespace Msp {
 
index 627c91894a27db34f2ee23e78f1ed23a2321d6c0..61118c734febffa1e5da463e5ead628074a144ad 100644 (file)
@@ -1,8 +1,8 @@
 #ifndef MSP_CORE_SEMAPHORE_H_
 #define MSP_CORE_SEMAPHORE_H_
 
+#include <msp/time/timedelta.h>
 #include "mutex.h"
-#include "../time/timedelta.h"
 
 namespace Msp {
 
index 3ccf2987106d423aa313bfa50e1e0080df120533..0167ff99e7be1aa6bd4fb81427023d9d8868d67c 100644 (file)
@@ -1,5 +1,5 @@
-#include "../core/except.h"
-#include "../time/units.h"
+#include <msp/core/except.h>
+#include <msp/time/units.h>
 #include "profiler.h"
 
 using namespace std;
index 3ebefa05b63877b979b4ace905e149d4b95ba1e1..7f88dd2c099620189168ed8ed11645d385bed942 100644 (file)
@@ -4,7 +4,7 @@
 #include <map>
 #include <string>
 #include <vector>
-#include "../time/timedelta.h"
+#include <msp/time/timedelta.h>
 
 namespace Msp {
 namespace Debug {
index 62f6340d801aca9f7583369f8953128e8ee9ab60..bf3363de2fdce5d42d8f0e78655d35b3febea5c8 100644 (file)
@@ -1,4 +1,4 @@
-#include "../time/utils.h"
+#include <msp/time/utils.h>
 #include "profilingscope.h"
 
 using namespace std;
index adec3d452ec4db8dc5ff9d553ec4506d1a562ccb..fe9f38cecb84212f833f26e4d759303af3e9fe7c 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef MSP_DEBUG_PROFILINGSCOPE_H_
 #define MSP_DEBUG_PROFILINGSCOPE_H_
 
-#include "../time/timestamp.h"
+#include <msp/time/timestamp.h>
 #include "profiler.h"
 
 namespace Msp {
index 403e484cba7376412ca0a068c58f908e258d1ff1..b080f82f8f3d3713e50dca5b995739f30143e81d 100644 (file)
@@ -3,8 +3,8 @@
 
 #include <vector>
 #include <sigc++/sigc++.h>
-#include "../core/mutex.h"
-#include "../core/semaphore.h"
+#include <msp/core/mutex.h>
+#include <msp/core/semaphore.h>
 #include "timedelta.h"
 #include "timestamp.h"