diff options
| author | Stefan Boberg <[email protected]> | 2021-08-09 14:12:59 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-08-09 14:12:59 +0200 |
| commit | dcadd5a52dadb244d93167dca94a747ed42e2f08 (patch) | |
| tree | 801b5ae986e6c1dc64de20346d9db288aaf3e7ff /zencore/include | |
| parent | Added IsProcessRunning()/GetCurrentProcessId() helpers (diff) | |
| download | zen-dcadd5a52dadb244d93167dca94a747ed42e2f08.tar.xz zen-dcadd5a52dadb244d93167dca94a747ed42e2f08.zip | |
Added ThrowLastError which accepts a std::source_location
Diffstat (limited to 'zencore/include')
| -rw-r--r-- | zencore/include/zencore/except.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/zencore/include/zencore/except.h b/zencore/include/zencore/except.h index 782dbeed0..2357ba1b5 100644 --- a/zencore/include/zencore/except.h +++ b/zencore/include/zencore/except.h @@ -4,6 +4,7 @@ #include <zencore/string.h> #include <zencore/windows.h> +#include <source_location> #include <string> namespace zen { @@ -52,5 +53,7 @@ ThrowSystemException(const char* Message) } ZENCORE_API void ThrowLastError(std::string_view Message); +ZENCORE_API void ThrowLastError(std::string_view Message, const std::source_location& Location); + } // namespace zen |