diff options
author | Ed Smith-Rowland <3dw4rd@verizon.net> | 2011-07-20 15:45:55 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2011-07-20 15:45:55 +0000 |
commit | 7715bf1b5bf9ae6e625b4714b136958cebf50270 (patch) | |
tree | 6ae71daad4b1abfe14e76428d6af88dd6326d97a | |
parent | 07be61200c8b5ed4b686450d57a590eaeffe66c7 (diff) | |
download | gcc-7715bf1b5bf9ae6e625b4714b136958cebf50270.zip gcc-7715bf1b5bf9ae6e625b4714b136958cebf50270.tar.gz gcc-7715bf1b5bf9ae6e625b4714b136958cebf50270.tar.bz2 |
stdc++.h: Add scoped_allocator.
2011-07-20 Ed Smith-Rowland <3dw4rd@verizon.net>
* include/precompiled/stdc++.h: Add scoped_allocator.
From-SVN: r176520
-rw-r--r-- | libstdc++-v3/ChangeLog | 4 | ||||
-rw-r--r-- | libstdc++-v3/include/precompiled/stdc++.h | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index d5b7598..7522ba8 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2011-07-20 Ed Smith-Rowland <3dw4rd@verizon.net> + + * include/precompiled/stdc++.h: Add scoped_allocator. + 2011-07-20 Benjamin Kosnik <bkoz@redhat.com> * include/std/bitset (operator[]): Make constexpr. diff --git a/libstdc++-v3/include/precompiled/stdc++.h b/libstdc++-v3/include/precompiled/stdc++.h index 510a655..b0c93ca 100644 --- a/libstdc++-v3/include/precompiled/stdc++.h +++ b/libstdc++-v3/include/precompiled/stdc++.h @@ -1,6 +1,6 @@ // C++ includes used for precompiling -*- C++ -*- -// Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 +// Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 // Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free @@ -106,6 +106,7 @@ #include <random> #include <ratio> #include <regex> +#include <scoped_allocator> #include <system_error> #include <thread> #include <tuple> |