fixed a preprocessor condition bug where boost.date_time was being used when it shouldn't

This commit is contained in:
Arvid Norberg 2007-06-14 22:57:29 +00:00
parent 46bf2970fb
commit 7d7a764f26
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ namespace libtorrent
}
}
#if (!defined (__MACH__) && !defined (_WIN32) && !defined(_POSIX_MONOTONIC_CLOCK) || _POSIX_MONOTONIC_CLOCK < 0) || defined (TORRENT_USE_BOOST_DATE_TIME)
#if (!defined (__MACH__) && !defined (_WIN32) && (!defined(_POSIX_MONOTONIC_CLOCK) || _POSIX_MONOTONIC_CLOCK < 0)) || defined (TORRENT_USE_BOOST_DATE_TIME)
#include <boost/date_time/posix_time/posix_time_types.hpp>