Commit 16e27672 authored by Marko Mäkelä's avatar Marko Mäkelä

MDEV-28478 fixup: Declare a constexpr member function const

parent fd9e733a
......@@ -174,7 +174,7 @@ class page_id_t
m_id= (m_id & ~uint64_t{0} << 32) | page_no;
}
constexpr ulonglong raw() { return m_id; }
constexpr ulonglong raw() const { return m_id; }
private:
/** The page identifier */
......
Markdown is supported
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