Fix missing return value

This commit is contained in:
Vinnie Falco
2013-08-16 10:43:31 -07:00
parent 724cb5df7b
commit 9bc96bc558

View File

@@ -145,7 +145,7 @@ protected:
//static_bassert (std::is_integral <IntegerType>::value);
IntegerType networkValue;
if (! read (&networkValue))
return;
return false;
*value = fromNetworkByteOrder (networkValue);
return true;
}