now when looping i write something like this:

row_type const nrows = row_info.size();
for (row_type r = 0; r < nrows; ++r) {

are compilers these days smart enough so that we can simply write:

for (row_type r = 0; r < row_info.size(); ++r) {

?

thanks, ed.

Reply via email to