$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r55693 - sandbox/boost
From: cdm.henderson_at_[hidden]
Date: 2009-08-20 17:06:07
Author: chenderson
Date: 2009-08-20 17:06:07 EDT (Thu, 20 Aug 2009)
New Revision: 55693
URL: http://svn.boost.org/trac/boost/changeset/55693
Log:
warning message around checked iterators for MSVC STL
Text files modified:
sandbox/boost/mapreduce.hpp | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Modified: sandbox/boost/mapreduce.hpp
==============================================================================
--- sandbox/boost/mapreduce.hpp (original)
+++ sandbox/boost/mapreduce.hpp 2009-08-20 17:06:07 EDT (Thu, 20 Aug 2009)
@@ -16,9 +16,9 @@
#ifdef BOOST_MSVC
# if !defined(__SGI_STL_PORT)
# pragma message("warning: using STLPort is recommended to avoid STL container performance problems in MSVC supplied libraries.")
-# endif
-# if _SECURE_SCL
-# pragma message("warning: using MSVC with _SECURE_SCL=1 defined can cause serious runtime performance degradation.")
+# if _SECURE_SCL
+# pragma message("warning: using MSVC with _SECURE_SCL=1 defined can cause serious runtime performance degradation.")
+# endif
# endif
#endif