From bbced3f0f0052e6a953106b0ce7c8ab1700e70ce Mon Sep 17 00:00:00 2001 From: ocornut Date: Tue, 18 Aug 2015 19:31:44 -0600 Subject: [PATCH] Build fix --- imgui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui.cpp b/imgui.cpp index e64a021d..ff23df2f 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -818,7 +818,7 @@ int ImFormatStringV(char* buf, int buf_size, const char* fmt, va_list args) // Pass data_size==0 for zero-terminated strings // FIXME-OPT: Replace with e.g. FNV1a hash? CRC32 pretty much randomly access 1KB. Need to do proper measurements. -ImU32 ImHash(const void* data, int data_size, ImU32) +ImU32 ImHash(const void* data, int data_size, ImU32 seed) { static ImU32 crc32_lut[256] = { 0 }; if (!crc32_lut[1])