From e21c07101391e31ffe340dfaf8855dffd7653884 Mon Sep 17 00:00:00 2001 From: Alex Cunningham Date: Sat, 16 Feb 2013 19:19:13 +0000 Subject: [PATCH] Fixed preprocessor directive in timing - now works on non-gcc compilers --- gtsam/base/timing.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtsam/base/timing.h b/gtsam/base/timing.h index ecec413b1..030754cde 100644 --- a/gtsam/base/timing.h +++ b/gtsam/base/timing.h @@ -26,7 +26,7 @@ // Automatically use the new Boost timers if version is recent enough. #if BOOST_VERSION >= 104800 -#if not GTSAM_DISABLE_NEW_TIMERS +#ifndef GTSAM_DISABLE_NEW_TIMERS #define GTSAM_USING_NEW_BOOST_TIMERS #endif #endif