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

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)