diff options
author | Brad King <brad.king@kitware.com> | 2022-01-26 13:03:38 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2022-01-26 13:04:14 (GMT) |
commit | 94189fc39759d5eb2d3c2ddaf9556ac4eb2abc64 (patch) | |
tree | 3e36974c7c928bfa683e1aaa5fa80a1f15a52244 | |
parent | 8428e39ed9cddb3b7f1a6f7a58cb8617503183d2 (diff) | |
parent | 036d0cbbde2d4aa8c40851b03b01dd10ae588f58 (diff) | |
download | CMake-94189fc39759d5eb2d3c2ddaf9556ac4eb2abc64.zip CMake-94189fc39759d5eb2d3c2ddaf9556ac4eb2abc64.tar.gz CMake-94189fc39759d5eb2d3c2ddaf9556ac4eb2abc64.tar.bz2 |
Merge topic 'FindMPI-static-first' into release-3.22
036d0cbbde FindMPI: Place static first in mpi test source
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !6900
-rw-r--r-- | Modules/FindMPI/test_mpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindMPI/test_mpi.c b/Modules/FindMPI/test_mpi.c index 70d7e1d..36b5dfd 100644 --- a/Modules/FindMPI/test_mpi.c +++ b/Modules/FindMPI/test_mpi.c @@ -7,7 +7,7 @@ #endif #if defined(MPI_VERSION) && defined(MPI_SUBVERSION) -const static char mpiver_str[] = { 'I', 'N', +static const char mpiver_str[] = { 'I', 'N', 'F', 'O', ':', 'M', 'P', 'I', |