summaryrefslogtreecommitdiffstats
path: root/Common/interface
diff options
context:
space:
mode:
authorEgor <egor.yusov@gmail.com>2018-02-23 07:31:16 +0000
committerEgor <egor.yusov@gmail.com>2018-02-23 07:31:16 +0000
commitb5628073787ff995c3858f5dbd7da689435d3449 (patch)
tree30a0ff4ce9260f15552f5c608c61b75b28f7fc3e /Common/interface
parentFixed interface headers to use relative paths in #include (diff)
downloadDiligentCore-b5628073787ff995c3858f5dbd7da689435d3449.tar.gz
DiligentCore-b5628073787ff995c3858f5dbd7da689435d3449.zip
Fixed Linux build
Diffstat (limited to 'Common/interface')
-rw-r--r--Common/interface/LockHelper.h2
-rw-r--r--Common/interface/RefCntAutoPtr.h6
-rw-r--r--Common/interface/RefCountedObjectImpl.h8
-rw-r--r--Common/interface/StringTools.h2
-rw-r--r--Common/interface/ValidatedCast.h2
5 files changed, 10 insertions, 10 deletions
diff --git a/Common/interface/LockHelper.h b/Common/interface/LockHelper.h
index bcb644df..dc8f290d 100644
--- a/Common/interface/LockHelper.h
+++ b/Common/interface/LockHelper.h
@@ -28,7 +28,7 @@
#include <condition_variable>
#include <atomic>
-#include "../../../Platforms/interface/Atomics.h"
+#include "../../Platforms/interface/Atomics.h"
namespace ThreadingTools
{
diff --git a/Common/interface/RefCntAutoPtr.h b/Common/interface/RefCntAutoPtr.h
index f5d1a437..5bfdbdab 100644
--- a/Common/interface/RefCntAutoPtr.h
+++ b/Common/interface/RefCntAutoPtr.h
@@ -23,9 +23,9 @@
#pragma once
-#include "../../../Primitives/interface/Object.h"
-#include "../../../Platforms/Basic/interface/DebugUtilities.h"
-#include "../../../Platforms/interface/Atomics.h"
+#include "../../Primitives/interface/Object.h"
+#include "../../Platforms/Basic/interface/DebugUtilities.h"
+#include "../../Platforms/interface/Atomics.h"
#include "LockHelper.h"
#include "ValidatedCast.h"
#include "RefCountedObjectImpl.h"
diff --git a/Common/interface/RefCountedObjectImpl.h b/Common/interface/RefCountedObjectImpl.h
index 617eef59..134edb23 100644
--- a/Common/interface/RefCountedObjectImpl.h
+++ b/Common/interface/RefCountedObjectImpl.h
@@ -26,10 +26,10 @@
/// \file
/// Implementation of the template base class for reference counting objects
-#include "../../../Primitives/interface/Object.h"
-#include "../../../Primitives/interface/MemoryAllocator.h"
-#include "../../../Platforms/interface/Atomics.h"
-#include "../../../Platforms/Basic/interface/DebugUtilities.h"
+#include "../../Primitives/interface/Object.h"
+#include "../../Primitives/interface/MemoryAllocator.h"
+#include "../../Platforms/interface/Atomics.h"
+#include "../../Platforms/Basic/interface/DebugUtilities.h"
#include "LockHelper.h"
#include "ValidatedCast.h"
diff --git a/Common/interface/StringTools.h b/Common/interface/StringTools.h
index 5921411b..d7bab918 100644
--- a/Common/interface/StringTools.h
+++ b/Common/interface/StringTools.h
@@ -30,7 +30,7 @@
#include <cctype>
#include <string.h>
-#include "../../../Platforms/Basic/interface/DebugUtilities.h"
+#include "../../Platforms/Basic/interface/DebugUtilities.h"
namespace Diligent
{
diff --git a/Common/interface/ValidatedCast.h b/Common/interface/ValidatedCast.h
index 8848b920..1a520336 100644
--- a/Common/interface/ValidatedCast.h
+++ b/Common/interface/ValidatedCast.h
@@ -23,7 +23,7 @@
#pragma once
-#include "../../../Platforms/Basic/interface/DebugUtilities.h"
+#include "../../Platforms/Basic/interface/DebugUtilities.h"
template<typename DstType, typename SrcType>
DstType* ValidatedCast( SrcType *Ptr )