Changed: #825 Remove all warning when compiling Ryzom on Linux

hg/feature/sound
kervala 15 years ago
parent a0ca31041e
commit 65e5267ffd

@ -492,7 +492,7 @@ uint32 CAliasCont<TChld>::getChildIndexByAlias(uint32 alias) const
{
TChld* child = this->_Childs[i];
if (child!=NULL && child->getAlias()==alias)
return i;
return (uint32)i;
}
return ~0;
}

@ -2943,7 +2943,7 @@ void CHeap<T, V>::push(T key, V const& value)
{
_Heap.push_back(THeapNode(key, value));
backwardLeveling(_Heap.size()-1);
backwardLeveling((uint)_Heap.size()-1);
}
template <typename T, typename V>

Loading…
Cancel
Save