File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 5
5
given-names : Erik
6
6
orcid : 0000-0002-4518-9017
7
7
title : MPItrampoline
8
- version : v4.1.1
8
+ version : v4.1.2
9
9
doi : 10.5281/zenodo.6174408
10
10
date-released : 2022-07-11
Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.12...3.20 )
2
2
project (
3
- MPItrampoline VERSION 4.1.1
3
+ MPItrampoline VERSION 4.1.2
4
4
DESCRIPTION "MPI trampoline"
5
5
HOMEPAGE_URL "https://github.com/eschnett/MPItrampoline"
6
6
LANGUAGES NONE
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ extern int MPITRAMPOLINE_CONST mpiabi_loaded_version_patch;
116
116
#include "mpi_decl_constants_c.h"
117
117
#include "mpi_decl_functions_c.h"
118
118
119
- inline int PMPI_Pcontrol (int level , ...) { return MPI_SUCCESS ; }
119
+ int PMPI_Pcontrol (int level , ...);
120
120
int MPI_Pcontrol (int level , ...);
121
121
122
122
#ifdef __cplusplus
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ int mpiabi_loaded_version_patch = -1;
41
41
#include "mpi_defn_constants_c.h"
42
42
#include "mpi_defn_functions_c.h"
43
43
44
- extern inline int PMPI_Pcontrol (int level , ...);
44
+ int PMPI_Pcontrol (int level , ...) { return MPI_SUCCESS ; }
45
45
int MPI_Pcontrol (int level , ...) { return MPI_SUCCESS ; }
46
46
47
47
#ifdef ENABLE_FORTRAN
You can’t perform that action at this time.
0 commit comments