Clang-format with GNU style doesn't recognize three-way comparison operators and will split them up. For example: ```cpp 1<=>2; ``` Clang-format with GNU style will format this to: ```cpp 1 <= > 2; ``` This is ill-formed and shouldn't be generated.