fix error C2280 for VisualStudio 2015

This commit is contained in:
Nomango 2019-10-14 11:33:34 +08:00
parent b3c5ddf954
commit e98ee29654
1 changed files with 2 additions and 0 deletions

View File

@ -456,6 +456,8 @@ protected:
small_storage small_; small_storage small_;
big_storage big_; big_storage big_;
}; };
storage() : is_small_(false), small_() {} // fix error C2280 for VisualStudio 2015
}; };
storage storage_; storage storage_;