Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r86046 - branches/release/boost/container/detail
From: igaztanaga_at_[hidden]
Date: 2013-09-30 00:48:57


Author: igaztanaga
Date: 2013-09-30 00:48:56 EDT (Mon, 30 Sep 2013)
New Revision: 86046
URL: http://svn.boost.org/trac/boost/changeset/86046

Log:
Fixed typo causing errors in clang builds.

Text files modified:
   branches/release/boost/container/detail/tree.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: branches/release/boost/container/detail/tree.hpp
==============================================================================
--- branches/release/boost/container/detail/tree.hpp Mon Sep 30 00:47:29 2013 (r86045)
+++ branches/release/boost/container/detail/tree.hpp 2013-09-30 00:48:56 EDT (Mon, 30 Sep 2013) (r86046)
@@ -829,7 +829,7 @@
    template <class... Args>
    iterator emplace_hint_equal(const_iterator hint, Args&&... args)
    {
- NodePtr p(AllocHolder::create_node(boost::forward<Args>(args)...));
+ NodePtr tmp(AllocHolder::create_node(boost::forward<Args>(args)...));
       scoped_destroy_deallocator<NodeAlloc> destroy_deallocator(tmp, this->node_alloc());
       iterator ret(this->icont().insert_equal(hint.get(), *tmp));
       destroy_deallocator.release();


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