From 5d286a29e04a51b7cb86e2844ac5fccf23421864 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=80=D0=B0=D0=BD=D0=B8=D0=BC=D0=B8=D1=80=20=D0=9A?= =?UTF-8?q?=D0=B0=D1=80=D0=B0=D1=9F=D0=B8=D1=9B?= Date: Thu, 3 Sep 2020 22:54:36 -0700 Subject: [PATCH] Fixed build. --- src/thread.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/thread.cpp b/src/thread.cpp index eabcbbd..ca7d0a4 100644 --- a/src/thread.cpp +++ b/src/thread.cpp @@ -4,6 +4,7 @@ */ #include "bx_p.h" +#include #include #if BX_CONFIG_SUPPORTS_THREADING @@ -279,8 +280,8 @@ namespace bx #elif BX_PLATFORM_WINDOWS // Try to use the new thread naming API from Win10 Creators update onwards if we have it typedef HRESULT (WINAPI *SetThreadDescriptionProc)(HANDLE, PCWSTR); - SetThreadDescriptionProc SetThreadDescription = bx::functionCast( - bx::dlsym(GetModuleHandleA("Kernel32.dll"), "SetThreadDescription") + SetThreadDescriptionProc SetThreadDescription = functionCast( + dlsym(GetModuleHandleA("Kernel32.dll"), "SetThreadDescription") ); if (SetThreadDescription) {