From 6cc9f2dff08dfea314e508e7146ba4beb2be0c16 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Tue, 18 Feb 2014 22:55:43 +0100 Subject: [PATCH] Fix token --- xbob/io/hdf5.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xbob/io/hdf5.cpp b/xbob/io/hdf5.cpp index 9eb330d..0ff0603 100644 --- a/xbob/io/hdf5.cpp +++ b/xbob/io/hdf5.cpp @@ -332,7 +332,7 @@ static bob::io::hdf5type PyBobIo_H5FromTypenum (int type_num) { #ifdef NPY_COMPLEX256 case NPY_COMPLEX256: return bob::io::c256; #endif -#if define(__LP64__) || defined(__APPLE__) +#if defined(__LP64__) || defined(__APPLE__) case NPY_LONGLONG: switch (NPY_BITSOF_LONGLONG) { case 8: return bob::io::i8; -- GitLab