File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
ompi/mpi/bindings/ompi_bindings Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1152,7 +1152,8 @@ class TypeCommCopyAttrFunctionStandard(Type):
1152
1152
# pass
1153
1153
1154
1154
def type_text (self , enable_count = False ):
1155
- return 'MPI_Comm_copy_attr_function *'
1155
+ type_name = self .mangle_name ('MPI_Comm_copy_attr_function' )
1156
+ return f'{ type_name } *'
1156
1157
1157
1158
@Type .add_type ('COMM_DELETE_ATTR_FUNCTION' , abi_type = ['ompi' ])
1158
1159
class TypeCommDeleteAttrFunction (Type ):
@@ -1167,7 +1168,8 @@ class TypeCommDeleteAttrFunctionStandard(Type):
1167
1168
# pass
1168
1169
1169
1170
def type_text (self , enable_count = False ):
1170
- return 'MPI_Comm_delete_attr_function *'
1171
+ type_name = self .mangle_name ('MPI_Comm_delete_attr_function' )
1172
+ return f'{ type_name } *'
1171
1173
1172
1174
@Type .add_type ('GREQUEST_QUERY_FUNCTION' , abi_type = ['ompi' ])
1173
1175
class TypeGrequestQueryFunction (Type ):
You can’t perform that action at this time.
0 commit comments