clang-format does not lex the ISO 646 alternative operator keywords as operators; rather, it interprets them as normal identifiers.
This would result in code such as (a) and (b) getting reformatted as (a)and(b).
As a result of some discussion on cfe-dev, this patch changes the lexer option used by clang-format to interpret these keywords as operators and not identifiers.