diff options
Diffstat (limited to '')
-rw-r--r-- | include/pdb/handle.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/pdb/handle.hpp b/include/pdb/handle.hpp index 7c0cc40..511ef90 100644 --- a/include/pdb/handle.hpp +++ b/include/pdb/handle.hpp @@ -5,6 +5,8 @@ #pragma once +#include "workarounds.hpp" + #include <Windows.h> #include <cassert> @@ -18,7 +20,7 @@ struct CloseHandle { return; const auto ret = ::CloseHandle(raw); assert(ret); - UNREFERENCED_PARAMETER(ret); + PDB_UNUSED_PARAMETER(ret); } }; |