Skip to content

Commit da515d4

Browse files
committed
temporary commit
Signed-off-by: Howard Pritchard <howardp@lanl.gov>
1 parent 8a7407f commit da515d4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

ompi/mpi/bindings/ompi_bindings/c_type.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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'])
11581159
class 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'])
11731175
class TypeGrequestQueryFunction(Type):

0 commit comments

Comments
 (0)