From c2a9a4e6be6d9476ecdcd9f0fe94025805ca7363 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 2 Jul 2022 17:13:20 +0200 Subject: [PATCH] Add missing includes. --- server/TracyView_Callstack.cpp | 1 + server/TracyView_Compare.cpp | 2 ++ server/TracyView_FindZone.cpp | 2 ++ 3 files changed, 5 insertions(+) diff --git a/server/TracyView_Callstack.cpp b/server/TracyView_Callstack.cpp index c12330bf..de085dad 100644 --- a/server/TracyView_Callstack.cpp +++ b/server/TracyView_Callstack.cpp @@ -1,4 +1,5 @@ #include +#include #include "../common/TracyStackFrames.hpp" #include "TracyImGui.hpp" diff --git a/server/TracyView_Compare.cpp b/server/TracyView_Compare.cpp index ac152d4b..7c61a63c 100644 --- a/server/TracyView_Compare.cpp +++ b/server/TracyView_Compare.cpp @@ -1,3 +1,5 @@ +#include + #ifndef TRACY_NO_FILESELECTOR # include "../nfd/nfd.h" #endif diff --git a/server/TracyView_FindZone.cpp b/server/TracyView_FindZone.cpp index 775634a1..66f1bbfb 100644 --- a/server/TracyView_FindZone.cpp +++ b/server/TracyView_FindZone.cpp @@ -1,3 +1,5 @@ +#include + #include "imgui.h" #include "../common/TracyStackFrames.hpp"