Skip to content

Commit bef04d9

Browse files
authored
Merge pull request #6543 from bertwesarg/v3.0.x-fix-cpp-condition
v3.0.x: Fix use of bitwise operation in CPP condition
2 parents fb33e10 + 59c697f commit bef04d9

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
@@ -42,7 +42,7 @@
4242

4343
#include <stdarg.h>
4444

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

0 commit comments

Comments
 (0)