Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r86045 - trunk/boost/container/detail
From: igaztanaga_at_[hidden]
Date: 2013-09-30 00:47:29


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

Log:
Fixed typo causing errors in clang builds.

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

Modified: trunk/boost/container/detail/tree.hpp
==============================================================================
--- trunk/boost/container/detail/tree.hpp Sun Sep 29 22:04:47 2013 (r86044)
+++ trunk/boost/container/detail/tree.hpp 2013-09-30 00:47:29 EDT (Mon, 30 Sep 2013) (r86045)
@@ -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