Consider to make trivial methods 'constexpr', e. g. replace this ```cpp bool operator==(Entity const& rhs) const { return id_ == rhs.id_; } ``` to ```cpp bool constexpr operator==(Entity const& rhs) const { return id_ == rhs.id_; } ```