summaryrefslogtreecommitdiff
path: root/zen/sys_error.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/sys_error.h')
-rwxr-xr-xzen/sys_error.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/zen/sys_error.h b/zen/sys_error.h
index c179ec8a..a087172f 100755
--- a/zen/sys_error.h
+++ b/zen/sys_error.h
@@ -81,7 +81,6 @@ std::wstring formatSystemError(const std::wstring& functionName, long long lastE
inline
std::wstring formatSystemError(const std::wstring& functionName, ErrorCode ec)
{
- //static_assert(sizeof(ec) == sizeof(int), "");
//const std::wstring errorCode = printNumber<std::wstring>(L"0x%08x", static_cast<int>(ec));
const std::wstring errorCode = numberTo<std::wstring>(ec);
bgstack15