fixed a preprocessor condition bug where boost.date_time was being used when it shouldn't
This commit is contained in:
parent
46bf2970fb
commit
7d7a764f26
|
@ -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>
|
||||
|
||||
|
|
Loading…
Reference in New Issue