From 482ff383c185dfe69450773b485f80c53f7fa2a2 Mon Sep 17 00:00:00 2001 From: AndreaCatania Date: Mon, 24 Oct 2022 13:06:51 +0200 Subject: [PATCH] Fix Fedora 36 compilation issue. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix Fedora 36 compilation issue. ``` error: ‘numeric_limits’ is not a member of ‘std’. ``` --- server/tracy_robin_hood.h | 1 + 1 file changed, 1 insertion(+) diff --git a/server/tracy_robin_hood.h b/server/tracy_robin_hood.h index fb279dab..7e449c72 100644 --- a/server/tracy_robin_hood.h +++ b/server/tracy_robin_hood.h @@ -47,6 +47,7 @@ #include #include #include +#include #if __cplusplus >= 201703L # include #endif