clang-format: apply clang-12 changes
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: Id432a670d81a53425940fe36b2299f8781ecc3be
diff --git a/lib/include/phosphor-logging/lg2/concepts.hpp b/lib/include/phosphor-logging/lg2/concepts.hpp
index eaea861..b70ac98 100644
--- a/lib/include/phosphor-logging/lg2/concepts.hpp
+++ b/lib/include/phosphor-logging/lg2/concepts.hpp
@@ -12,7 +12,7 @@
/** Determine if a type might be a constexpr string: (const char (&)[N]) */
template <typename T>
-concept maybe_constexpr_string = std::is_array_v<std::remove_cvref_t<T>>&&
+concept maybe_constexpr_string = std::is_array_v<std::remove_cvref_t<T>> &&
std::same_as<const char*, std::decay_t<T>>;
/** Determine if a type is certainly not a constexpr string. */