Possible type-o?

i get errors with the latest tip

const Image::BitmapData bitmap (image, false);

i had to do:

const Image::BitmapData bitmap (image, Image::BitmapData::readWrite);

small but prevents a successful build.

Not a typo, it’s a change I had to make (mentioned in the check-in notes). There are now three different modes, so a bool won’t do the job. (It’s also a lot more readable with an enum, rather than a mysterious bool parameter).