Forward declare ImFont.

This commit is contained in:
Bartosz Taudul 2022-07-02 16:25:47 +02:00
parent fa9e7c02bc
commit 4347cc58b1
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,7 @@
#include <assert.h> #include <assert.h>
#include "imgui.h"
#include "IconsFontAwesome5.h" #include "IconsFontAwesome5.h"
#include "TracyBadVersion.hpp" #include "TracyBadVersion.hpp"
#include "TracyImGui.hpp" #include "TracyImGui.hpp"

View File

@ -1,9 +1,10 @@
#ifndef __TRACYBADVERSION_HPP__ #ifndef __TRACYBADVERSION_HPP__
#define __TRACYBADVERSION_HPP__ #define __TRACYBADVERSION_HPP__
#include <imgui.h>
#include "../common/TracyForceInline.hpp" #include "../common/TracyForceInline.hpp"
struct ImFont;
namespace tracy namespace tracy
{ {