mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-10 21:47:41 +00:00
RuntimeCommon: Use const on member functions where applicable
Adds missing const qualifiers on class member functions that don't modify instance state.
This commit is contained in:
@@ -53,7 +53,7 @@ public:
|
||||
void Push(CPFRegion* reg);
|
||||
CPFRegion* Pop();
|
||||
void Pop(CPFRegion* reg);
|
||||
bool Test(CPFRegion* reg);
|
||||
bool Test(const CPFRegion* reg) const;
|
||||
};
|
||||
|
||||
class CPFArea {
|
||||
|
||||
Reference in New Issue
Block a user