Given ```cpp template <class T> inline constexpr bool signed_integral = std::is_integral_v<T> && std::is_signed_v<T>; ``` clang-format will stylise as ```cpp template <class T> inline constexpr bool signed_integral = std::is_integral_v<T>&& std::is_signed_v<T>; ``` when it should be stylised as ```cpp template <class T> inline constexpr bool signed_integral = std::is_integral_v<T> && std::is_signed_v<T>; // ^ ``` I'm unable to provide system details or clang-format details at present, but my estimate is that this clang-format build is at most a fortnight old.