From e98ee29654b8298f97ade12dd293d3f24a328902 Mon Sep 17 00:00:00 2001 From: Nomango Date: Mon, 14 Oct 2019 11:33:34 +0800 Subject: [PATCH] fix error C2280 for VisualStudio 2015 --- src/kiwano/core/any.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/kiwano/core/any.hpp b/src/kiwano/core/any.hpp index 31656dfc..ddb3f63a 100644 --- a/src/kiwano/core/any.hpp +++ b/src/kiwano/core/any.hpp @@ -456,6 +456,8 @@ protected: small_storage small_; big_storage big_; }; + + storage() : is_small_(false), small_() {} // fix error C2280 for VisualStudio 2015 }; storage storage_;