diff --git a/include/fplus/maybe.hpp b/include/fplus/maybe.hpp index 222ab81e..2a4c5d5f 100644 --- a/include/fplus/maybe.hpp +++ b/include/fplus/maybe.hpp @@ -244,7 +244,7 @@ class maybe { __pragma(warning(push)) __pragma(warning(disable : 4127)) #endif - alignas(T) unsigned char value_[sizeof(T)]; + alignas(T) unsigned char value_[sizeof(T)]; #ifdef _MSC_VER __pragma(warning(pop)) #endif diff --git a/include_all_in_one/include/fplus/fplus.hpp b/include_all_in_one/include/fplus/fplus.hpp index bc792f9f..89cac77d 100644 --- a/include_all_in_one/include/fplus/fplus.hpp +++ b/include_all_in_one/include/fplus/fplus.hpp @@ -868,8 +868,7 @@ namespace internal { static std::false_type is_refwrap_test(const U&); template - struct is_reference_wrapper : decltype(is_refwrap_test(std::declval())) { - }; + struct is_reference_wrapper : decltype(is_refwrap_test(std::declval())) {}; template ::type> struct unwrap_reference_wrapper { @@ -2801,7 +2800,7 @@ class maybe { __pragma(warning(push)) __pragma(warning(disable : 4127)) #endif - alignas(T) unsigned char value_[sizeof(T)]; + alignas(T) unsigned char value_[sizeof(T)]; #ifdef _MSC_VER __pragma(warning(pop)) #endif