diff options
| author | Stefan Boberg <[email protected]> | 2021-09-27 11:43:40 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-09-27 11:43:40 +0200 |
| commit | dd9aec560688547dfd60090436d843c76450bd62 (patch) | |
| tree | 238d935657b50fa2cc154496f32017889bf64e6c /zencore/include | |
| parent | clang-format (diff) | |
| download | zen-dd9aec560688547dfd60090436d843c76450bd62.tar.xz zen-dd9aec560688547dfd60090436d843c76450bd62.zip | |
GetWindowsErrorAsString() -> GetSystemErrorAsString()
Diffstat (limited to 'zencore/include')
| -rw-r--r-- | zencore/include/zencore/except.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zencore/include/zencore/except.h b/zencore/include/zencore/except.h index 5cfefb1e2..3430565d2 100644 --- a/zencore/include/zencore/except.h +++ b/zencore/include/zencore/except.h @@ -27,7 +27,7 @@ ZENCORE_API void ThrowLastError [[noreturn]] (std::string_view Message, const st ZENCORE_API void ThrowSystemError [[noreturn]] (uint32_t ErrorCode, std::string_view Message); ZENCORE_API std::string GetLastErrorAsString(); -ZENCORE_API std::string GetWindowsErrorAsString(uint32_t Win32ErrorCode); +ZENCORE_API std::string GetSystemErrorAsString(uint32_t Win32ErrorCode); inline int32_t GetLastError() |