diff options
| author | Stefan Boberg <[email protected]> | 2023-10-09 22:48:53 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-10-09 22:48:53 +0200 |
| commit | e948384f562f742a9f479dee074b33802958ba1a (patch) | |
| tree | aeec2cccde8607d01d224aa54788b2332b69b29e /src/zencore/include | |
| parent | reject bad bucket reads (#456) (diff) | |
| download | zen-e948384f562f742a9f479dee074b33802958ba1a.tar.xz zen-e948384f562f742a9f479dee074b33802958ba1a.zip | |
minor fixes to zencore (#457)
* AssertException constructor should be explicit
* removed pragma comment
Diffstat (limited to 'src/zencore/include')
| -rw-r--r-- | src/zencore/include/zencore/zencore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zencore/include/zencore/zencore.h b/src/zencore/include/zencore/zencore.h index 71bd08e69..299fa2c31 100644 --- a/src/zencore/include/zencore/zencore.h +++ b/src/zencore/include/zencore/zencore.h @@ -256,7 +256,7 @@ namespace zen class AssertException : public std::logic_error { public: - AssertException(const char* Msg) : std::logic_error(Msg) {} + inline explicit AssertException(const char* Msg) : std::logic_error(Msg) {} }; struct AssertImpl |