diff options
Diffstat (limited to 'zencore')
| -rw-r--r-- | zencore/include/zencore/except.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zencore/include/zencore/except.h b/zencore/include/zencore/except.h index 5e0f580f2..5b4a49364 100644 --- a/zencore/include/zencore/except.h +++ b/zencore/include/zencore/except.h @@ -79,9 +79,9 @@ GetLastError() } inline std::error_code -MakeWin32ErrorCode(uint32_t Win32ErrorCode) noexcept +MakeErrorCode(uint32_t ErrorCode) noexcept { - return std::error_code(Win32ErrorCode, std::system_category()); + return std::error_code(ErrorCode, std::system_category()); } inline std::error_code |