|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r82282 - trunk/boost/context
From: oliver.kowalke_at_[hidden]
Date: 2012-12-30 13:09:58
Author: olli
Date: 2012-12-30 13:09:58 EST (Sun, 30 Dec 2012)
New Revision: 82282
URL: http://svn.boost.org/trac/boost/changeset/82282
Log:
context: intptr_t typedef for Windows CE
Text files modified:
trunk/boost/context/fcontext.hpp | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
Modified: trunk/boost/context/fcontext.hpp
==============================================================================
--- trunk/boost/context/fcontext.hpp (original)
+++ trunk/boost/context/fcontext.hpp 2012-12-30 13:09:58 EST (Sun, 30 Dec 2012)
@@ -7,10 +7,14 @@
#ifndef BOOST_CONTEXT_FCONTEXT_H
#define BOOST_CONTEXT_FCONTEXT_H
-#if defined(__PGI) || defined(_WIN32_WCE)
+#if defined(__PGI)
#include <stdint.h>
#endif
+#if defined(_WIN32_WCE)
+typedef int intptr_t;
+#endif
+
#include <boost/config.hpp>
#include <boost/cstdint.hpp>
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