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:15 (GMT) |
commit | 6d778ea6db2e7526390b8fdc7641784cf33a1402 (patch) | |
tree | 3a6ba32504ad026fc9f698c50ac2acb29f948007 /Modules | |
parent | e2035fb0f953e196e931b67f565d71607fbf3abd (diff) | |
parent | 036d0cbbde2d4aa8c40851b03b01dd10ae588f58 (diff) | |
download | CMake-6d778ea6db2e7526390b8fdc7641784cf33a1402.zip CMake-6d778ea6db2e7526390b8fdc7641784cf33a1402.tar.gz CMake-6d778ea6db2e7526390b8fdc7641784cf33a1402.tar.bz2 |
Merge topic 'FindMPI-static-first'
036d0cbbde FindMPI: Place static first in mpi test source
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !6900
Diffstat (limited to 'Modules')
-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', |