Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3d102a0

Browse files
committedMay 27, 2020
Fix automatic inclusion of std::array converter
1 parent 2658115 commit 3d102a0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎cpp2py/cpp2py_info_base.py

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ class Cpp2pyInfoStd:
3434
'std::.*tuple' : 'tuple',
3535
'std::.*optional' : 'optional',
3636
'std::.*variant' : 'variant',
37+
'std::.*array' : 'std_array',
3738
}
3839

3940
table_converters = dict ( (k, "cpp2py/converters/%s.hpp"%v) for (k,v) in list(_table_converters.items()))

0 commit comments

Comments
 (0)
Please sign in to comment.