mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-10 02:27: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:
@@ -74,7 +74,7 @@ struct DCLN : BigDNA {
|
||||
#endif
|
||||
};
|
||||
Node root;
|
||||
size_t getMemoryUsage() { return root.getMemoryUsage(); }
|
||||
size_t getMemoryUsage() const { return root.getMemoryUsage(); }
|
||||
|
||||
/* Dummy MP2 member */
|
||||
void insertNoClimb(hecl::blender::PyOutStream&) const {}
|
||||
|
||||
Reference in New Issue
Block a user