From: <sv...@op...> - 2024-03-03 15:44:20
|
Author: manx Date: Sun Mar 3 16:44:06 2024 New Revision: 20219 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=20219 Log: [Var] Run clang-format. Modified: trunk/OpenMPT/src/mpt/base/macros.hpp Modified: trunk/OpenMPT/src/mpt/base/macros.hpp ============================================================================== --- trunk/OpenMPT/src/mpt/base/macros.hpp Sun Mar 3 16:34:39 2024 (r20218) +++ trunk/OpenMPT/src/mpt/base/macros.hpp Sun Mar 3 16:44:06 2024 (r20219) @@ -162,7 +162,12 @@ #define MPT_ASSUME(expr) __assume(expr) #endif #if MPT_COMPILER_GCC -#define MPT_ASSUME(expr) do { if (!expr) { __builtin_unreachable(); } } while(0) +#define MPT_ASSUME(expr) \ + do { \ + if (!expr) { \ + __builtin_unreachable(); \ + } \ + } while (0) #endif #if !defined(MPT_ASSUME) #define MPT_ASSUME(expr) MPT_DISCARD(expr) |