I'm not quite sure why visual studio is giving me the error message "Ill-defined for-loop: 'unsigned int' values are always of range '0' to '4294967295'. Loop executes infinitely" for the following code:
for (unsigned int i = list->GetCount() - 1; i >= 0; i--)
{
// do stuff to each item (specifically in reverse order)
}
Could someone please explain to me?
Edit: GetCount() returns an unsigned int, and I do not have control over this