|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r81650 - trunk/libs/thread/example
From: vicente.botet_at_[hidden]
Date: 2012-12-01 07:28:56
Author: viboes
Date: 2012-12-01 07:28:55 EST (Sat, 01 Dec 2012)
New Revision: 81650
URL: http://svn.boost.org/trac/boost/changeset/81650
Log:
Thread: uncomment failing indirection in synchronized_value
Text files modified:
trunk/libs/thread/example/synchronized_value.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/libs/thread/example/synchronized_value.cpp
==============================================================================
--- trunk/libs/thread/example/synchronized_value.cpp (original)
+++ trunk/libs/thread/example/synchronized_value.cpp 2012-12-01 07:28:55 EST (Sat, 01 Dec 2012)
@@ -65,7 +65,7 @@
}
{
boost::synchronized_value<std::string> s;
-#if 0
+#if 1
s->append("foo/");
#else
s.synchronize()->append("foo");
@@ -75,7 +75,7 @@
}
{
boost::synchronized_value<std::string> s;
-#if 0
+#if 1
s->append("foo");
#else
s.synchronize()->append("foo");
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