From 94b01feb229215c2088c3e275467ca2d78ebd619 Mon Sep 17 00:00:00 2001 From: baldurk Date: Fri, 8 Nov 2024 13:57:12 +0000 Subject: [PATCH] Fix missing include for std::hash --- renderdoc/api/replay/rdcstr.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/renderdoc/api/replay/rdcstr.h b/renderdoc/api/replay/rdcstr.h index 05fef986d..be3feaaf4 100644 --- a/renderdoc/api/replay/rdcstr.h +++ b/renderdoc/api/replay/rdcstr.h @@ -1138,6 +1138,8 @@ public: // add a std::hash overload so rdcstr can be used in hashmaps #ifdef RENDERDOC_EXPORTS +#include + // from string_utils.h uint32_t strhash(const char *str);