mirror of
https://github.com/isar/libmdbx.git
synced 2024-12-30 02:24:14 +08:00
mdbx++: add mdbx::fatal constructors for goofy compilers.
Change-Id: I5a26b34eac1b7ee9e9c5d7ca060a2adea30e68aa
This commit is contained in:
parent
2bcd2e510e
commit
5cb6f02770
2
mdbx.h++
2
mdbx.h++
@ -324,6 +324,8 @@ public:
|
||||
fatal(const ::mdbx::error &) noexcept;
|
||||
fatal(const exception &src) noexcept : fatal(src.error()) {}
|
||||
fatal(exception &&src) noexcept : fatal(src.error()) {}
|
||||
fatal(const fatal &src) noexcept : fatal(src.error()) {}
|
||||
fatal(fatal &&src) noexcept : fatal(src.error()) {}
|
||||
fatal &operator=(fatal &&) = default;
|
||||
fatal &operator=(const fatal &) = default;
|
||||
virtual ~fatal() noexcept;
|
||||
|
Loading…
x
Reference in New Issue
Block a user