Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r82204 - branches/release/boost/atomic
From: andrey.semashev_at_[hidden]
Date: 2012-12-24 22:36:31


Author: andysem
Date: 2012-12-24 22:36:31 EST (Mon, 24 Dec 2012)
New Revision: 82204
URL: http://svn.boost.org/trac/boost/changeset/82204

Log:
Attempt to fix compilation in Windows CE.
Text files modified:
   branches/release/boost/atomic/atomic.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: branches/release/boost/atomic/atomic.hpp
==============================================================================
--- branches/release/boost/atomic/atomic.hpp (original)
+++ branches/release/boost/atomic/atomic.hpp 2012-12-24 22:36:31 EST (Mon, 24 Dec 2012)
@@ -157,7 +157,7 @@
 // PGI seems to not support intptr_t/uintptr_t properly. BOOST_HAS_STDINT_H is not defined for this compiler by Boost.Config.
 #if !defined(__PGIC__)
 
-#if defined(BOOST_WINDOWS) \
+#if (defined(BOOST_WINDOWS) && !defined(_WIN32_WCE)) \
     || (defined(_XOPEN_UNIX) && (_XOPEN_UNIX+0 > 0)) \
     || defined(__CYGWIN__) \
     || defined(macintosh) || defined(__APPLE__) || defined(__APPLE_CC__) \


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk