Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r58348 - sandbox/fiber/boost/fiber
From: oliver.kowalke_at_[hidden]
Date: 2009-12-13 07:56:02


Author: olli
Date: 2009-12-13 07:56:01 EST (Sun, 13 Dec 2009)
New Revision: 58348
URL: http://svn.boost.org/trac/boost/changeset/58348

Log:
- disable warning related to member intialisation with this
Text files modified:
   sandbox/fiber/boost/fiber/auto_reset_event.hpp | 9 +++++++++
   sandbox/fiber/boost/fiber/condition.hpp | 9 +++++++++
   sandbox/fiber/boost/fiber/count_down_event.hpp | 9 +++++++++
   sandbox/fiber/boost/fiber/manual_reset_event.hpp | 9 +++++++++
   4 files changed, 36 insertions(+), 0 deletions(-)

Modified: sandbox/fiber/boost/fiber/auto_reset_event.hpp
==============================================================================
--- sandbox/fiber/boost/fiber/auto_reset_event.hpp (original)
+++ sandbox/fiber/boost/fiber/auto_reset_event.hpp 2009-12-13 07:56:01 EST (Sun, 13 Dec 2009)
@@ -14,6 +14,11 @@
 #include <boost/fiber/scheduler.hpp>
 #include <boost/fiber/strategy.hpp>
 
+# if defined(BOOST_MSVC)
+# pragma warning(push)
+# pragma warning(disable:4355)
+# endif
+
 namespace boost {
 namespace fibers {
 
@@ -52,4 +57,8 @@
 
 }}
 
+# if defined(BOOST_MSVC)
+# pragma warning(pop)
+# endif
+
 #endif // BOOST_FIBERS_AUTO_RESET_EVENT_H

Modified: sandbox/fiber/boost/fiber/condition.hpp
==============================================================================
--- sandbox/fiber/boost/fiber/condition.hpp (original)
+++ sandbox/fiber/boost/fiber/condition.hpp 2009-12-13 07:56:01 EST (Sun, 13 Dec 2009)
@@ -21,6 +21,11 @@
 #include <boost/fiber/scheduler.hpp>
 #include <boost/fiber/strategy.hpp>
 
+# if defined(BOOST_MSVC)
+# pragma warning(push)
+# pragma warning(disable:4355)
+# endif
+
 namespace boost {
 namespace fibers {
 
@@ -139,4 +144,8 @@
 
 }}
 
+# if defined(BOOST_MSVC)
+# pragma warning(pop)
+# endif
+
 #endif // BOOST_FIBERS_CONDITION_H

Modified: sandbox/fiber/boost/fiber/count_down_event.hpp
==============================================================================
--- sandbox/fiber/boost/fiber/count_down_event.hpp (original)
+++ sandbox/fiber/boost/fiber/count_down_event.hpp 2009-12-13 07:56:01 EST (Sun, 13 Dec 2009)
@@ -15,6 +15,11 @@
 #include <boost/fiber/scheduler.hpp>
 #include <boost/fiber/strategy.hpp>
 
+# if defined(BOOST_MSVC)
+# pragma warning(push)
+# pragma warning(disable:4355)
+# endif
+
 namespace boost {
 namespace fibers {
 
@@ -50,4 +55,8 @@
 
 }}
 
+# if defined(BOOST_MSVC)
+# pragma warning(pop)
+# endif
+
 #endif // BOOST_FIBERS_COUNT_DOWN_EVENT_H

Modified: sandbox/fiber/boost/fiber/manual_reset_event.hpp
==============================================================================
--- sandbox/fiber/boost/fiber/manual_reset_event.hpp (original)
+++ sandbox/fiber/boost/fiber/manual_reset_event.hpp 2009-12-13 07:56:01 EST (Sun, 13 Dec 2009)
@@ -15,6 +15,11 @@
 #include <boost/fiber/scheduler.hpp>
 #include <boost/fiber/strategy.hpp>
 
+# if defined(BOOST_MSVC)
+# pragma warning(push)
+# pragma warning(disable:4355)
+# endif
+
 namespace boost {
 namespace fibers {
 
@@ -59,4 +64,8 @@
 
 }}
 
+# if defined(BOOST_MSVC)
+# pragma warning(pop)
+# endif
+
 #endif // BOOST_FIBERS_MANUAL_RESET_EVENT_H


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