Browse Source

Fix windows.h include capitalization

Paul-Louis Ageneau 1 year ago
parent
commit
3c84b0a8e9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/impl/utils.cpp

+ 1 - 1
src/impl/utils.cpp

@@ -19,7 +19,7 @@
 #include <thread>
 
 #if defined(_WIN32)
-#include <Windows.h>
+#include <windows.h>
 
 typedef HRESULT(WINAPI *pfnSetThreadDescription)(HANDLE, PCWSTR);
 #endif