Providing user supplied default constructor for expect<void>

This commit is contained in:
Lee Clagett 2018-10-15 23:42:29 -04:00
parent 77e1ebff26
commit 9b6dd9348c
1 changed files with 3 additions and 1 deletions

View File

@ -350,7 +350,9 @@ public:
using error_type = std::error_code;
//! Create a successful object.
expect() = default;
expect() noexcept
: code_()
{}
expect(std::error_code const& code) noexcept
: code_(code)