$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r84054 - trunk/boost/container
From: igaztanaga_at_[hidden]
Date: 2013-04-26 15:46:48
Author: igaztanaga
Date: 2013-04-26 15:46:47 EDT (Fri, 26 Apr 2013)
New Revision: 84054
URL: http://svn.boost.org/trac/boost/changeset/84054
Log:
Fixes #8500
Text files modified:
trunk/boost/container/allocator_traits.hpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/container/allocator_traits.hpp
==============================================================================
--- trunk/boost/container/allocator_traits.hpp (original)
+++ trunk/boost/container/allocator_traits.hpp 2013-04-26 15:46:47 EDT (Fri, 26 Apr 2013)
@@ -214,7 +214,7 @@
//!
//! <b>Throws</b>: Nothing
static void deallocate(Alloc &a, pointer p, size_type n)
- { return a.deallocate(p, n); }
+ { a.deallocate(p, n); }
//! <b>Effects</b>: calls `a.allocate(n, p)` if that call is well-formed;
//! otherwise, invokes `a.allocate(n)`