Skip to content

Commit 7da938a

Browse files
authored
Merge pull request #195 from ecmwf/fix/formatting
Fix formatting
2 parents 856aedf + efc1fe0 commit 7da938a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/eckit/mpi/Comm.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -513,8 +513,9 @@ class CommBuilder : public CommFactory {
513513
#if defined(__clang_analyzer__)
514514
// By adding C assert, the analyzer can make assumptions on conditions, preventing false positive warnings
515515
#include <cassert>
516-
#define ECKIT_MPI_ASSERT(a) eckit::mpi::detail::Assert(!(a), #a, __FILE__, __LINE__, __func__); \
517-
assert(a)
516+
#define ECKIT_MPI_ASSERT(a) \
517+
eckit::mpi::detail::Assert(!(a), #a, __FILE__, __LINE__, __func__); \
518+
assert(a)
518519
#else
519520
#define ECKIT_MPI_ASSERT(a) eckit::mpi::detail::Assert(!(a), #a, __FILE__, __LINE__, __func__)
520521
#endif

0 commit comments

Comments
 (0)