summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/Plugin.cpp
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2009-11-18 06:11:59 +0000
committerAndrew Stitcher <astitcher@apache.org>2009-11-18 06:11:59 +0000
commita8117a04f75af7bf82cefa0850254c183e15f995 (patch)
tree700cdf1d9684fd61706b4a3eae290b7596306b95 /cpp/src/qpid/Plugin.cpp
parent3ddbe154eb0de0f23bbae22b35410ee2070f32a6 (diff)
downloadqpid-python-a8117a04f75af7bf82cefa0850254c183e15f995.tar.gz
Changes to compile under SunCC 5.10
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@881679 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/Plugin.cpp')
-rw-r--r--cpp/src/qpid/Plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/Plugin.cpp b/cpp/src/qpid/Plugin.cpp
index a37479a020..4368e15d27 100644
--- a/cpp/src/qpid/Plugin.cpp
+++ b/cpp/src/qpid/Plugin.cpp
@@ -42,7 +42,7 @@ void invoke(boost::function<void()> f) { f(); }
Plugin::Target::~Target() { finalize(); }
void Plugin::Target::finalize() {
- for_each(finalizers.begin(), finalizers.end(), invoke);
+ std::for_each(finalizers.begin(), finalizers.end(), invoke);
finalizers.clear();
}