mdbx++: add mdbx::fatal constructors for goofy compilers.

Change-Id: I5a26b34eac1b7ee9e9c5d7ca060a2adea30e68aa
This commit is contained in:
Leonid Yuriev 2020-09-05 14:04:41 +03:00
parent 2bcd2e510e
commit 5cb6f02770

View File

@ -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;