Stop MSVC from complaining about digraphs not being supported
[folly.git] / folly / experimental / logging / xlog.h
index 686bb1c7ec6db3fef4487012d20f45a9b00736f5..a8abbd50102fd408f819a8f2c0e8500b6bdcaa3b 100644 (file)
  *   initialized.  On all subsequent calls, disabled log statements can be
  *   skipped with just a single check of the LogLevel.
  */
+/* clang-format off */
 #define XLOG_IMPL(level, type, ...)                                          \
   (!XLOG_IS_ON_IMPL(level))                                                  \
       ? ::folly::logDisabledHelper(                                          \
             std::integral_constant<bool, ::folly::isLogLevelFatal(level)>{}) \
-      : ::folly::LogStreamVoidify<::folly::isLogLevelFatal(level)>{} &       \
+      : ::folly::LogStreamVoidify< ::folly::isLogLevelFatal(level)>{} &      \
           ::folly::LogStreamProcessor(                                       \
               [] {                                                           \
                 static ::folly::XlogCategoryInfo<XLOG_IS_IN_HEADER_FILE>     \
               (type),                                                        \
               ##__VA_ARGS__)                                                 \
               .stream()
+/* clang-format on */
 
 /**
  * Check if and XLOG() statement with the given log level would be enabled.