example: for (Option &option : optionlist) {
No, our style is to do: for (Option& option : optionlist) { See http://www.webkit.org/coding/coding-style.html#pointers-cpp
Yes, you are right, I was unclear. It meant to be an example for the error itself, not for the correct style.