Skip to content

Make the ChronoStatSvc methods const

The start/stop/delta/status methods of the ChronoStatSvc are not const, but can often be called from const methods. If they are accessed via a cached Handle, this will now cause problems.

We can hide this feature by making the chrono entity map mutable, and the accessor methods const.

Merge request reports