summaryrefslogtreecommitdiff
path: root/zen/sys_error.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/sys_error.h')
-rw-r--r--zen/sys_error.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/zen/sys_error.h b/zen/sys_error.h
index 6d03f299..73a92343 100644
--- a/zen/sys_error.h
+++ b/zen/sys_error.h
@@ -42,6 +42,7 @@ private:
+//better leave it as a macro (see comment in file_error.h)
#define THROW_LAST_SYS_ERROR(functionName) \
do { const ErrorCode ecInternal = getLastError(); throw zen::SysError(formatSystemError(functionName, ecInternal)); } while (false)
bgstack15