mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-28 21:57:57 +03:00
Use an int instead of a size_t
This commit is contained in:
parent
ee970a3fce
commit
e962e4e1f5
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ DelegateHandle MulticastDelegate<T>::Add(Delegate<T>&& function)
|
|||
template<typename T>
|
||||
void MulticastDelegate<T>::Remove(DelegateHandle handle)
|
||||
{
|
||||
size_t i;
|
||||
int i;
|
||||
|
||||
for (i = delegates.NumObjects(); i > 0; i--) {
|
||||
const DelegateMultiElement<T>& elem = delegates.ObjectAt(i);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue