diff --git a/src/serialize.h b/src/serialize.h index d26d2d52e..8e37f5672 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -773,11 +773,11 @@ void Unserialize(Stream& is, std::set& m) */ struct CSerActionSerialize { - bool ForRead() const { return false; } + constexpr bool ForRead() const { return false; } }; struct CSerActionUnserialize { - bool ForRead() const { return true; } + constexpr bool ForRead() const { return true; } }; template