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