Skip to content

Commit

Permalink
#11 fix free_function_info_collection
Browse files Browse the repository at this point in the history
  • Loading branch information
kwabenantim committed Mar 18, 2024
1 parent 9b2a32a commit 394312d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cppwg/generators.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def update_free_function_info(self) -> None:
function_info = CppFreeFunctionInfo(free_function.name)
function_info.module_info = module_info
function_info.decl = free_function
module_info.free_function_info.append(function_info)
module_info.free_function_info_collection.append(function_info)

else:
# As module_info.use_all_free_functions == False, free function
Expand Down

0 comments on commit 394312d

Please sign in to comment.