From 390dce6172ea3c84c4b7becf9283a83d1bdb6439 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Hunold?= Date: Sat, 16 Jun 2012 12:05:44 +0000 Subject: [PATCH] Fix regressions introduced in r78802. Reference #6940. Rename TIME_UTC to TIME_UTC_ [SVN r78972] --- test/util.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/util.hpp b/test/util.hpp index 9bfe1af..639c17b 100644 --- a/test/util.hpp +++ b/test/util.hpp @@ -71,7 +71,7 @@ inline bool in_range(const boost::posix_time::ptime& xt, int secs=1) boost::xtime xsecs(int secs) { boost::xtime ret; - boost::xtime_get(&ret, boost::TIME_UTC); + boost::xtime_get(&ret, boost::TIME_UTC_); ret.sec += secs; return ret; }