$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r50294 - trunk/libs/regex/src
From: john_at_[hidden]
Date: 2008-12-16 05:13:25
Author: johnmaddock
Date: 2008-12-16 05:13:24 EST (Tue, 16 Dec 2008)
New Revision: 50294
URL: http://svn.boost.org/trac/boost/changeset/50294
Log:
msvc warning suppression.
Text files modified:
trunk/libs/regex/src/cregex.cpp | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
Modified: trunk/libs/regex/src/cregex.cpp
==============================================================================
--- trunk/libs/regex/src/cregex.cpp (original)
+++ trunk/libs/regex/src/cregex.cpp 2008-12-16 05:13:24 EST (Tue, 16 Dec 2008)
@@ -28,6 +28,10 @@
typedef boost::match_flag_type match_flag_type;
#include <cstdio>
+#ifdef BOOST_MSVC
+#pragma warning(disable:4309)
+#endif
+
namespace boost{
#ifdef __BORLANDC__
@@ -641,3 +645,4 @@
+