COMP: remove constexpr from NullObject members

This commit is contained in:
Mark Olesen
2019-07-18 10:39:05 +02:00
committed by Andrew Heather
parent c0fad3be09
commit 18984f6c27

View File

@ -112,13 +112,13 @@ public:
}
//- No elements
inline constexpr bool empty() const
inline bool empty() const
{
return true;
}
//- Zero elements
inline constexpr label size() const
inline label size() const
{
return 0;
}