Skip to content
Snippets Groups Projects
Commit 067e88ef authored by Manuel Günther's avatar Manuel Günther
Browse files

Calling the right cast function

parent 77c107fd
No related branches found
No related tags found
1 merge request!9Resolve "automatic array casting in C++ does not work"
Pipeline #
...@@ -244,7 +244,7 @@ namespace bob { namespace io { namespace base { namespace array { ...@@ -244,7 +244,7 @@ namespace bob { namespace io { namespace base { namespace array {
* data at. Only get the number of dimensions right! * data at. Only get the number of dimensions right!
*/ */
template <typename T, int N> blitz::Array<T,N> cast() const { 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 private: //representation
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment