diff options
Diffstat (limited to 'c/err.h')
-rw-r--r-- | c/err.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ enum ErrType : unsigned char struct Err { std::wstring what; - Err(ErrType t, const wchar_t* fmt = L"%s"); + Err(ErrType t, const wchar_t* fmt = L"%s."); inline Err(ErrType t, std::wstring fmt) : Err(t, fmt.c_str()) {} }; |