diff options
author | Kenneth Heafield <github@kheafield.com> | 2013-01-20 12:31:03 +0000 |
---|---|---|
committer | Kenneth Heafield <github@kheafield.com> | 2013-01-20 12:31:03 +0000 |
commit | dc16aa2accc7d9033d9c31c7bbc5e581d43a5101 (patch) | |
tree | 7ee4b4155447607ad8f0a0e9f8226199403ed77f /klm/util/stream/timer.hh | |
parent | c18c2497707bed72ace95db459e541261213c7e2 (diff) |
Better delimiters, cross-platform fixes
Diffstat (limited to 'klm/util/stream/timer.hh')
-rw-r--r-- | klm/util/stream/timer.hh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/klm/util/stream/timer.hh b/klm/util/stream/timer.hh index 50e94fe8..7e1a5885 100644 --- a/klm/util/stream/timer.hh +++ b/klm/util/stream/timer.hh @@ -1,14 +1,16 @@ #ifndef UTIL_STREAM_TIMER__ #define UTIL_STREAM_TIMER__ -#include <boost/version.hpp> +// Sorry Jon, this was adding library dependencies in Moses and people complained. + +/*#include <boost/version.hpp> #if BOOST_VERSION >= 104800 #include <boost/timer/timer.hpp> #define UTIL_TIMER(str) boost::timer::auto_cpu_timer timer(std::cerr, 1, (str)) #else -//#warning Using Boost older than 1.48. Timing information will not be available. +//#warning Using Boost older than 1.48. Timing information will not be available.*/ #define UTIL_TIMER(str) -#endif +//#endif #endif // UTIL_STREAM_TIMER__ |