From 8174d63fb44412a9cb2024aae48abb24b0b2ff0b Mon Sep 17 00:00:00 2001 From: Peter Conrad Date: Wed, 10 Oct 2018 14:36:19 +0200 Subject: [PATCH] More line wrapping --- include/fc/static_variant.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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; }