diff --git a/include/fc/static_variant.hpp b/include/fc/static_variant.hpp index 3e8d908..1b2628b 100644 --- a/include/fc/static_variant.hpp +++ b/include/fc/static_variant.hpp @@ -187,7 +187,8 @@ std::vector> init_wr template std::vector> init_wrappers() { - std::vector> result = init_wrappers(); + std::vector> result + = init_wrappers(); result.insert( result.begin(), [] ( Visitor& v, Data d ) { return v( *reinterpret_cast( d ) ); } ); return result; } @@ -201,7 +202,8 @@ std::vector> init_co template std::vector> init_const_wrappers() { - std::vector> result = init_const_wrappers(); + std::vector> result + = init_const_wrappers(); result.insert( result.begin(), [] ( Visitor& v, Data d ) { return v( *reinterpret_cast( d ) ); } ); return result; }