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):
11521152# pass
11531153
11541154 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 } *'
11561157
11571158@Type .add_type ('COMM_DELETE_ATTR_FUNCTION' , abi_type = ['ompi' ])
11581159class TypeCommDeleteAttrFunction (Type ):
@@ -1167,7 +1168,8 @@ class TypeCommDeleteAttrFunctionStandard(Type):
11671168# pass
11681169
11691170 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 } *'
11711173
11721174@Type .add_type ('GREQUEST_QUERY_FUNCTION' , abi_type = ['ompi' ])
11731175class TypeGrequestQueryFunction (Type ):
You can’t perform that action at this time.
0 commit comments