From 067e88efa49d227a000101f07b577ea34a5bd383 Mon Sep 17 00:00:00 2001 From: Manuel Gunther <siebenkopf@googlemail.com> Date: Thu, 8 Sep 2016 17:31:35 -0600 Subject: [PATCH] Calling the right cast 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 c592b7f..083ec1d 100644 --- a/bob/io/base/include/bob.io.base/blitz_array.h +++ b/bob/io/base/include/bob.io.base/blitz_array.h @@ -244,7 +244,7 @@ namespace bob { namespace io { namespace base { namespace array { * data at. Only get the number of dimensions right! */ template <typename T, int N> blitz::Array<T,N> cast() const { - return bob::core::array::cast<T,N>(*this); + return bob::io::base::array::cast<T,N>(*this); } private: //representation -- GitLab