Details
Diff Detail
Event Timeline
lib/Format/TokenAnnotator.cpp | ||
---|---|---|
509 | Why is this last check important? To not mark operator()()()? Is that important? | |
1478 | What kinds of tokens do you expect to consume here? Would it be better to be more strict, i.e. consume exactly an operator, "new", "delete", "()" and such? | |
1512 | This is very similar to the above. What are the exact differences (maybe add a comment)? Could we factor some of this out into a local function or a lambda? | |
1515 | According to LLVM coding standards, no "else" after "return", "break" or "continue". | |
2206 | I think this is incorrect as we currently break after the coloncolon if a nested name specifier has to be split, e.g.: void AssumeThisIsAVeryLongTypeOrSetASmallColumnLimit:: operator+() { } |
Why is this last check important? To not mark operator()()()? Is that important?