Providing user supplied default constructor for expect<void>

This commit is contained in:
Lee Clagett 2018-10-15 23:42:29 -04:00 committed by wowario
parent 18683acc84
commit 6246aada9d
No known key found for this signature in database
GPG Key ID: 24DCBE762DE9C111
1 changed files with 3 additions and 1 deletions

View File

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