瀏覽代碼

Don't define WriteMiniDump when URHO3D_MINIDUMPS is not defined

dbghelp not linking, when URHO3D_MINIDUMPS not defined, so MiniDumpWriteDump() used in WriteMiniDump() is not implemented
1vanK 3 年之前
父節點
當前提交
f1ef2ea640
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Source/Urho3D/Core/MiniDump.cpp

+ 1 - 1
Source/Urho3D/Core/MiniDump.cpp

@@ -1,7 +1,7 @@
 // Copyright (c) 2008-2022 the Urho3D project
 // License: MIT
 
-#if defined(_MSC_VER)
+#if defined(_MSC_VER) && defined(URHO3D_MINIDUMPS)
 
 #include "../Precompiled.h"