$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r53878 - sandbox/monotonic/libs/monotonic/doc
From: christian.schladetsch_at_[hidden]
Date: 2009-06-13 19:13:37
Author: cschladetsch
Date: 2009-06-13 19:13:37 EDT (Sat, 13 Jun 2009)
New Revision: 53878
URL: http://svn.boost.org/trac/boost/changeset/53878
Log:
removed const from pair in set
Text files modified:
sandbox/monotonic/libs/monotonic/doc/index.html | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: sandbox/monotonic/libs/monotonic/doc/index.html
==============================================================================
--- sandbox/monotonic/libs/monotonic/doc/index.html (original)
+++ sandbox/monotonic/libs/monotonic/doc/index.html 2009-06-13 19:13:37 EDT (Sat, 13 Jun 2009)
@@ -86,7 +86,7 @@
std::list<char, boost::monotonic::allocator<char> > list(storage);
std::copy(vec.begin(), vec.end(), std::back_inserter(list));
- typedef std::pair<const int, int> pair;
+ typedef std::pair<int, int> pair;
std::set<pair, std::less<pair>, boost::monotonic::allocator<pair> > set(storage);
std::copy(map.begin(), map.end(), std::inserter(set));
}