I have some user defined iterators, and every now and then I get a strange error that is easy to work around, but I don't understand why I'm getting it:
uint8_t bytes[pitch*height];
array_iterator::col_iterator a( &bytes[0] );
array_iterator::row_iterator base_iter_begin(
array_iterator::col_iterator( &bytes[0] ), width, pitch );
array_iterator::row_iterator base_iter_end(
array_iterator::col_iterator( &bytes[pitch*height] ), width, pitch
);
I have a class called array_iterator with embedded typedefs row_iterator and col_iterator. The row_iterator constructor takes a col_iterator as its first argument. The first and last statement work just fine. The middle statement fails to compile with the following error:
test-2d-iterators.cc:780: error: declaration of 'bytes' as array of references
Writing &( bytes[0] ) doesn't solve the problem (not surprisingly, since [] has higher precedence than &). Of course, I can just substitute "a" for the explicit col_iterator constructor call, but why do I have to? And if there is a problem, why does the col_iterator constructor in the last line compile?
Thanks.