Am 12.08.2011, 14:55 Uhr, schrieb Marco Leise <[email protected]>:

for (size_t i = x.length; i-- > 0; ) {...}

Actually this is probably better:

for (auto i = x.length; i > 0; )
{
    --i;
    ...
}

Reply via email to