Skip to content
Snippets Groups Projects
Commit 18984f6c authored by Mark OLESEN's avatar Mark OLESEN Committed by Andrew Heather
Browse files

COMP: remove constexpr from NullObject members

parent c0fad3be
Branches
Tags
No related merge requests found
......@@ -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;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment