Trying to fix reorder error

pull/4440/head
Sergio Acereda 2022-03-12 08:15:11 +01:00
parent 26bb601d8f
commit 729ab8ae33
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ public:
_valid(false) {}
explicit Maybe(const T &val) :
_valid(true), _val(val) {
_val(val), _valid(true) {
}
operator bool() const {