|
From: Daniel J. <dan...@us...> - 2007-03-18 22:37:23
|
Update of /cvsroot/boost-sandbox/boost-sandbox/boost In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv32539/boost Modified Files: unordered_map.hpp unordered_set.hpp Log Message: Import latest changes to the unordered containers. Includes: Copyright update. Switch back to the version where the sentinel points to itself. Remove alternative versions of swap. Workaround a borland bug or two. More consistent use of class/swap/template. Avoid a few warnings. Add a no-throw swap to the allocator for exception testing. Index: unordered_map.hpp =================================================================== RCS file: /cvsroot/boost-sandbox/boost-sandbox/boost/unordered_map.hpp,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- unordered_map.hpp 10 Jan 2007 00:03:26 -0000 1.11 +++ unordered_map.hpp 18 Mar 2007 20:00:57 -0000 1.12 @@ -1,6 +1,6 @@ // Copyright (C) 2003-2004 Jeremy B. Maitin-Shepard. -// Copyright (C) 2005-2006 Daniel James. +// Copyright (C) 2005-2007 Daniel James. // 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) Index: unordered_set.hpp =================================================================== RCS file: /cvsroot/boost-sandbox/boost-sandbox/boost/unordered_set.hpp,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- unordered_set.hpp 10 Jan 2007 00:03:26 -0000 1.11 +++ unordered_set.hpp 18 Mar 2007 20:00:57 -0000 1.12 @@ -1,6 +1,6 @@ // Copyright (C) 2003-2004 Jeremy B. Maitin-Shepard. -// Copyright (C) 2005-2006 Daniel James. +// Copyright (C) 2005-2007 Daniel James. // 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) |