Commit 66920a6bace7c54c8166c4ed938b6ffc5fabcf2b

Behdad Esfahbod 2018-08-06T15:32:13

[iter] Make operator bool explicit We would need to write: for (Iter<T> it (...); bool (t); t++) instead of: for (Iter<T> it (...); t; t++) But I think it's an improvement in code readability in the long term. Fixes https://github.com/harfbuzz/harfbuzz/issues/1127