http://llvm.org/bugs/show_bug.cgi?id=20559
clang-format: interpret some keywords as function calls and apply
the SBPO_Always option accordingly.
Before:
auto f (int x) -> decltype(x) { return sizeof(x); } int g () noexcept(someCall ()); static_assert(sizeof(char) == 1, "Your compiler is broken");
After:
auto f (int x) -> decltype (x) { return sizeof (x); } int g () noexcept (someCall ()); static_assert (sizeof (char) == 1, "Your compiler is broken");
How about: