Make CSerAction's ForRead() constexpr

The CSerAction's ForRead() method does not depend on any runtime
data, so guarantee that requests to it can be optimized out by
making it constexpr.

Suggested by Cory Fields.
This commit is contained in:
Pieter Wuille 2016-10-28 17:07:29 -07:00
parent a603925c77
commit a2929a26f5

View file

@ -773,11 +773,11 @@ void Unserialize(Stream& is, std::set<K, Pred, A>& 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<typename Stream, typename T>