$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r82214 - trunk/boost/context
From: oliver.kowalke_at_[hidden]
Date: 2012-12-26 15:25:04
Author: olli
Date: 2012-12-26 15:25:04 EST (Wed, 26 Dec 2012)
New Revision: 82214
URL: http://svn.boost.org/trac/boost/changeset/82214
Log:
context: include stdint.h for Windows CE
Text files modified: 
   trunk/boost/context/fcontext.hpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/context/fcontext.hpp
==============================================================================
--- trunk/boost/context/fcontext.hpp	(original)
+++ trunk/boost/context/fcontext.hpp	2012-12-26 15:25:04 EST (Wed, 26 Dec 2012)
@@ -7,7 +7,7 @@
 #ifndef BOOST_CONTEXT_FCONTEXT_H
 #define BOOST_CONTEXT_FCONTEXT_H
 
-#if defined(__PGI)
+#if defined(__PGI) || defined(_WIN32_WCE)
 #include <stdint.h>
 #endif