From 3f9cfd74a59f3a0f5027a091df1279509de3f4d7 Mon Sep 17 00:00:00 2001 From: Manuel Gunther <siebenkopf@googlemail.com> Date: Wed, 11 May 2016 14:15:49 -0600 Subject: [PATCH] Corrected template function --- bob/io/base/include/bob.io.base/blitz_array.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bob/io/base/include/bob.io.base/blitz_array.h b/bob/io/base/include/bob.io.base/blitz_array.h index 4625959..c592b7f 100644 --- a/bob/io/base/include/bob.io.base/blitz_array.h +++ b/bob/io/base/include/bob.io.base/blitz_array.h @@ -172,7 +172,7 @@ namespace bob { namespace io { namespace base { namespace array { * specify. We will do this by copying the data you gave. */ template <typename T, int N> void set(const blitz::Array<T,N>& data) { - set(boost::make_shared<blitz::Array<T,N> >(ccopy(data))); + set(boost::make_shared<blitz::Array<T,N> >(bob::core::array::ccopy(data))); } /** -- GitLab