From 035ebff7dd859415c6ff80f09dd6d0bbe65e69be Mon Sep 17 00:00:00 2001 From: Nils Wentzell Date: Tue, 26 May 2020 20:14:15 -0400 Subject: [PATCH] Fix automatic inclusion of std::array converter --- cpp2py/cpp2py_info_base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cpp2py/cpp2py_info_base.py b/cpp2py/cpp2py_info_base.py index 36ef50f..f6fd2f7 100644 --- a/cpp2py/cpp2py_info_base.py +++ b/cpp2py/cpp2py_info_base.py @@ -34,6 +34,7 @@ class Cpp2pyInfoStd: 'std::.*tuple' : 'tuple', 'std::.*optional' : 'optional', 'std::.*variant' : 'variant', + 'std::.*array' : 'std_array', } table_converters = dict ( (k, "cpp2py/converters/%s.hpp"%v) for (k,v) in list(_table_converters.items()))