summaryrefslogtreecommitdiff
path: root/Examples
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2016-05-26 20:55:28 +0100
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2016-05-26 20:55:28 +0100
commit43fe8aced6bffffe6eb56664b808d4de52403a59 (patch)
tree60a6463036ed829b3384b284c5cfebdccc9399e5 /Examples
parent2a98821c793f7c782ec22efce8ef3c23fe313063 (diff)
downloadswig-43fe8aced6bffffe6eb56664b808d4de52403a59.tar.gz
Testcase workaround for missing boost::array::fill
Some older versions of boost don't have this function.
Diffstat (limited to 'Examples')
-rw-r--r--Examples/test-suite/li_boost_array.i2
1 files changed, 2 insertions, 0 deletions
diff --git a/Examples/test-suite/li_boost_array.i b/Examples/test-suite/li_boost_array.i
index be51d15e0..e18140a50 100644
--- a/Examples/test-suite/li_boost_array.i
+++ b/Examples/test-suite/li_boost_array.i
@@ -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>;