Testcase workaround for missing boost::array::fill

Some older versions of boost don't have this function.
This commit is contained in:
William S Fulton 2016-05-26 20:55:28 +01:00
commit 43fe8aced6

View file

@ -25,6 +25,8 @@ namespace boost {
using std::array;
}
%ignore std::array::fill; // Some older versions of boost don't have this function
%include <std_array.i>
%template(ArrayInt6) std::array<int, 6>;