From f0c6976aeafb32c693c6161558bada627af8c9e8 Mon Sep 17 00:00:00 2001 From: Peter Conrad Date: Thu, 7 Mar 2019 22:14:06 +0100 Subject: [PATCH] Removed superfluous return statement --- include/fc/io/raw.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/include/fc/io/raw.hpp b/include/fc/io/raw.hpp index 9d9dd35..9b686f7 100644 --- a/include/fc/io/raw.hpp +++ b/include/fc/io/raw.hpp @@ -774,7 +774,6 @@ namespace fc { FC_ASSERT( _max_depth > 0 ); datastream ds( d, s ); fc::raw::unpack( ds, v, _max_depth - 1 ); - return v; } FC_RETHROW_EXCEPTIONS( warn, "error unpacking ${type}", ("type",fc::get_typename::name() ) ) } template