From c8da75c9c0aee265b9a6b595bf7a1bf00482d1fc Mon Sep 17 00:00:00 2001 From: Bert Wesarg Date: Fri, 30 Nov 2018 12:44:42 +0100 Subject: [PATCH] Fix use of bitwise operation in CPP condition Signed-off-by: Bert Wesarg (cherry picked from commit 18525ce39be78ea695ce51c64a6eb443a2dbd899) --- ompi/mpi/cxx/mpicxx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ompi/mpi/cxx/mpicxx.h b/ompi/mpi/cxx/mpicxx.h index 551e823b6a7..5d193d3d7ff 100644 --- a/ompi/mpi/cxx/mpicxx.h +++ b/ompi/mpi/cxx/mpicxx.h @@ -44,7 +44,7 @@ #include -#if !defined(OMPI_IGNORE_CXX_SEEK) & OMPI_WANT_MPI_CXX_SEEK +#if !defined(OMPI_IGNORE_CXX_SEEK) && OMPI_WANT_MPI_CXX_SEEK // We need to include the header files that define SEEK_* or use them // in ways that require them to be #defines so that if the user // includes them later, the double inclusion logic in the headers will