Add value initializer to silence warning

This commit is contained in:
David Seifert 2018-01-19 15:17:14 +01:00
parent b0f4f16ee0
commit 4ff3556d3f

View File

@ -748,7 +748,7 @@ namespace detail {
template<typename ArgType, typename L>
inline auto invokeLambda( L const &lambda, std::string const &arg ) -> ParserResult {
ArgType temp;
ArgType temp{};
auto result = convertInto( arg, temp );
return !result
? result