diff options
author | Brad King <brad.king@kitware.com> | 2022-01-25 14:53:24 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-01-25 14:53:24 (GMT) |
commit | 036d0cbbde2d4aa8c40851b03b01dd10ae588f58 (patch) | |
tree | 3e36974c7c928bfa683e1aaa5fa80a1f15a52244 /Modules/FindMPI | |
parent | 8428e39ed9cddb3b7f1a6f7a58cb8617503183d2 (diff) | |
download | CMake-036d0cbbde2d4aa8c40851b03b01dd10ae588f58.zip CMake-036d0cbbde2d4aa8c40851b03b01dd10ae588f58.tar.gz CMake-036d0cbbde2d4aa8c40851b03b01dd10ae588f58.tar.bz2 |
FindMPI: Place static first in mpi test source
Move the `static` added by commit 8cce0ad32f (FindMPI: Fix missing
static warning in the mpi test source, 2021-06-30, v3.22.0-rc1~502^2) to
the beginning of the line.
Fixes: #23141
Diffstat (limited to 'Modules/FindMPI')
-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', |