Add missing const keyword in CBotClass.cpp

1164-fix
melex750 2020-07-05 14:23:45 -04:00 committed by Mateusz Przybył
parent 1b93963413
commit 55c0c3221d
1 changed files with 1 additions and 1 deletions

View File

@ -542,7 +542,7 @@ void CBotClass::DefineClasses(std::list<CBotClass*> pClassList, CBotCStack* pSta
}
}
const std::list<CBotFunction*>& CBotClass::GetFunctions()
const std::list<CBotFunction*>& CBotClass::GetFunctions() const
{
return m_pMethod;
}