Skip to content

Commit 3c1b33c

Browse files
authored
Merge pull request #6140 from bertwesarg/fix-cpp-condition
Fix use of bitwise operation in CPP condition
2 parents 34d0790 + 18525ce commit 3c1b33c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ompi/mpi/cxx/mpicxx.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
#include <stdarg.h>
4646

47-
#if !defined(OMPI_IGNORE_CXX_SEEK) & OMPI_WANT_MPI_CXX_SEEK
47+
#if !defined(OMPI_IGNORE_CXX_SEEK) && OMPI_WANT_MPI_CXX_SEEK
4848
// We need to include the header files that define SEEK_* or use them
4949
// in ways that require them to be #defines so that if the user
5050
// includes them later, the double inclusion logic in the headers will

0 commit comments

Comments
 (0)