mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 21:07:42 +00:00
RetroDataSpec: Make member functions const where applicable
Marks member functions that don't modify instance state as const.
This commit is contained in:
@@ -98,7 +98,7 @@ struct SCAN : BigDNA {
|
||||
}
|
||||
}
|
||||
|
||||
void gatherDependencies(std::vector<hecl::ProjectPath>& pathsOut) {
|
||||
void gatherDependencies(std::vector<hecl::ProjectPath>& pathsOut) const {
|
||||
g_curSpec->flattenDependencies(frame, pathsOut);
|
||||
g_curSpec->flattenDependencies(string, pathsOut);
|
||||
for (int i = 0; i < 4; ++i)
|
||||
|
||||
Reference in New Issue
Block a user