Merge pull request #4610

9b6dd934 Providing user supplied default constructor for expect<void> (Lee Clagett)
This commit is contained in:
Riccardo Spagni 2018-10-16 18:25:14 +02:00
commit 5c85da5a73
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD
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)