aboutsummaryrefslogtreecommitdiff
path: root/c/err.h
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2022-09-07 23:33:08 +0200
committerJohn Ankarström <john@ankarstrom.se>2022-09-07 23:33:08 +0200
commitb5917be252caf9d38ae9466352c4176ef25732e3 (patch)
tree8eee2398b84cd533999a6d6f7539131daef5acfd /c/err.h
parentac7d676a1c457f71f1d3ae17d74699dd95c9c985 (diff)
downloadEpisodeBrowser-b5917be252caf9d38ae9466352c4176ef25732e3.tar.gz
Simplify Err message format.
Diffstat (limited to 'c/err.h')
-rw-r--r--c/err.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/err.h b/c/err.h
index 73a5fc9..072e229 100644
--- a/c/err.h
+++ b/c/err.h
@@ -4,6 +4,7 @@
#include <exception>
#include <string>
+#include "util.h"
#include "win32.h"
enum ErrType : unsigned char
@@ -17,8 +18,7 @@ enum ErrType : unsigned char
struct Err
{
std::wstring what;
- Err(ErrType t, const wchar_t* fmt = L"%s.");
- inline Err(ErrType t, std::wstring fmt) : Err(t, fmt.c_str()) {}
+ Err(ErrType t, Buf<const wchar_t> msg = L"");
};
/* Return a wide string describing exception. */