You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should run through the codebase and check that we are not unnecessarily passing non-const references to objects that we do not edit, and conversely mark appropriate class methods as const.
Culprits for investigation are the classes in field.h, arrays.h, and the various single-class header files.
The text was updated successfully, but these errors were encountered:
Really good for this kind of thing is cppcheck which is (unfortunately) very slow (...and therefore not really suitable for a CI/regular-use linter #41).
We should run through the codebase and check that we are not unnecessarily passing non-
const
references to objects that we do not edit, and conversely mark appropriate class methods asconst
.Culprits for investigation are the classes in
field.h
,arrays.h
, and the various single-class header files.The text was updated successfully, but these errors were encountered: