aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken2/tests/libsample/nontypetemplate.h
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken2/tests/libsample/nontypetemplate.h')
-rw-r--r--sources/shiboken2/tests/libsample/nontypetemplate.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/sources/shiboken2/tests/libsample/nontypetemplate.h b/sources/shiboken2/tests/libsample/nontypetemplate.h
index 4e2100626..5a9e670c6 100644
--- a/sources/shiboken2/tests/libsample/nontypetemplate.h
+++ b/sources/shiboken2/tests/libsample/nontypetemplate.h
@@ -37,6 +37,7 @@
template <int Size> class IntArray
{
public:
+ explicit IntArray(const int *data) { std::copy(data, data + Size, m_array); }
explicit IntArray(int v) { std::fill(m_array, m_array + Size, v); }
int sum() const { return std::accumulate(m_array, m_array + Size, int(0)); }