Skip to content

Commit 702199f

Browse files
authored
Merge pull request #6545 from bertwesarg/v4.0.x-fix-cpp-condition
Fix use of bitwise operation in CPP condition (v4.0.x)
2 parents 8261cda + 7f65e5b commit 702199f

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)