From 0fa90d2cd483d9aaf99d132f52b4f9fcd3db2c3b Mon Sep 17 00:00:00 2001 From: Richard Roberts Date: Tue, 11 Dec 2012 19:14:37 +0000 Subject: [PATCH] Was missing including boost version header in timing.h --- gtsam/base/timing.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gtsam/base/timing.h b/gtsam/base/timing.h index d9ead33dd..7bd030ed0 100644 --- a/gtsam/base/timing.h +++ b/gtsam/base/timing.h @@ -20,12 +20,11 @@ #include #include #include +#include #include #include -// Enabling the new Boost timers introduces dependencies on other Boost -// libraries so this is disabled for now until we modify the build scripts -// to link each component or MATLAB wrapper with only the libraries it needs. +// Automatically use the new Boost timers if version is recent enough. #if BOOST_VERSION >= 104800 #define GTSAM_USING_NEW_BOOST_TIMERS #endif