[6856] Fixed typo in not used function. This let build mangos with VS90/GCC.

This commit is contained in:
VladimirMangos 2008-11-28 16:13:30 +03:00
parent 8b707ca072
commit 9aa0578770
2 changed files with 2 additions and 2 deletions

View file

@ -226,7 +226,7 @@ class LinkedListHead
bool operator!=(const_reference _Right) const
{ // test for reference equality
return (_Ptr != &_Right));
return (_Ptr != &_Right);
}