From 142b7c300391270f20344e7c50b110cb17f05a95 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Mon, 15 Jul 2019 12:26:01 +1000 Subject: [PATCH] build: don't use explicitly relative include paths GCC has problems canonicalising some paths. --- object.cpp | 6 +++--- object.hpp | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/object.cpp b/object.cpp index 0915780..ab8f6b8 100644 --- a/object.cpp +++ b/object.cpp @@ -7,11 +7,11 @@ * 2016-2017, Danny Robson */ -#include "./object.hpp" +#include "object.hpp" -#include "./instance.hpp" +#include "instance.hpp" -#include "./physical_device.hpp" +#include "physical_device.hpp" using cruft::vk::object; using cruft::vk::enumerated; diff --git a/object.hpp b/object.hpp index cd09e44..92337d7 100644 --- a/object.hpp +++ b/object.hpp @@ -10,8 +10,8 @@ #ifndef CRUFT_VK_OBJECT_HPP #define CRUFT_VK_OBJECT_HPP -#include "./traits.hpp" -#include "./except.hpp" +#include "traits.hpp" +#include "except.hpp" #include #include