Displaying 1 result from an estimated 1 matches for "zavaton".
Did you mean:
zavatone
2012 Feb 03
4
[LLVMdev] faster?
Hi All.
In my C++ code I'm using the libc++ library and my question is about which construct is faster:
for(auto line : lines)
{
...
}
or
for(auto it = lines.begin(); it != lines.end(); it++)
{
…
}
Thanks in advance for any answer.
Luca.