From a1a8f390158b26e009aa4bd809832fa9ebabf24e Mon Sep 17 00:00:00 2001
From: Manuel Guenther <manuel.guenther@idiap.ch>
Date: Thu, 14 Aug 2014 14:27:40 +0200
Subject: [PATCH] Fixed namespace issue.

---
 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 9927e00..4625959 100644
--- a/bob/io/base/include/bob.io.base/blitz_array.h
+++ b/bob/io/base/include/bob.io.base/blitz_array.h
@@ -157,7 +157,7 @@ namespace bob { namespace io { namespace base { namespace array {
           if (N > BOB_MAX_DIM)
             throw std::runtime_error("unsupported number of dimensions on blitz::Array<>");
 
-          if (!isCContiguous(*data.get()))
+          if (!bob::core::array::isCContiguous(*data.get()))
             throw std::runtime_error("cannot buffer'ize non-c contiguous array");
 
           m_type.set(data);
-- 
GitLab