Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r85227 - branches/release/boost/flyweight/detail
From: joaquin_at_[hidden]
Date: 2013-08-06 13:23:55


Author: joaquin
Date: 2013-08-06 13:23:55 EDT (Tue, 06 Aug 2013)
New Revision: 85227
URL: http://svn.boost.org/trac/boost/changeset/85227

Log:
merged [85225] from trunk

Text files modified:
   branches/release/boost/flyweight/detail/flyweight_core.hpp | 6 +++---
   1 files changed, 3 insertions(+), 3 deletions(-)

Modified: branches/release/boost/flyweight/detail/flyweight_core.hpp
==============================================================================
--- branches/release/boost/flyweight/detail/flyweight_core.hpp Tue Aug 6 13:21:33 2013 (r85226)
+++ branches/release/boost/flyweight/detail/flyweight_core.hpp 2013-08-06 13:23:55 EDT (Tue, 06 Aug 2013) (r85227)
@@ -1,4 +1,4 @@
-/* Copyright 2006-2009 Joaquin M Lopez Munoz.
+/* Copyright 2006-2013 Joaquin M Lopez Munoz.
  * Distributed under the Boost Software License, Version 1.0.
  * (See accompanying file LICENSE_1_0.txt or copy at
  * http://www.boost.org/LICENSE_1_0.txt)
@@ -63,11 +63,11 @@
   }
 
   template<typename Checker>
- static void erase(const handle_type& h,Checker check)
+ static void erase(const handle_type& h,Checker chk)
   {
     typedef typename core::lock_type lock_type;
     lock_type lock(core::mutex());
- if(check(h))core::factory().erase(h);
+ if(chk(h))core::factory().erase(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