From 63e2c16e745664e225998fe5970c96a4d801aba2 Mon Sep 17 00:00:00 2001 From: Giulio Eulisse <10544+ktf@users.noreply.github.com> Date: Mon, 17 May 2021 12:05:14 +0200 Subject: [PATCH] Do not use relative include path for ImGUI.h #pragma once gets confused by `../../imgui/imgui.h` and `imgui.h` on macOS with XCode 12.5. --- server/TracyMouse.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyMouse.hpp b/server/TracyMouse.hpp index 0b143747..e52efe2b 100644 --- a/server/TracyMouse.hpp +++ b/server/TracyMouse.hpp @@ -1,7 +1,7 @@ #ifndef __TRACYMOUSE_HPP__ #define __TRACYMOUSE_HPP__ -#include "../imgui/imgui.h" +#include "imgui.h" namespace tracy {