diff options
author | Benjamin Kosnik <bkoz@redhat.com> | 2007-06-10 09:14:43 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2007-06-10 09:14:43 +0000 |
commit | 28ec62e0a776f2b19c3c989448534fcee641e020 (patch) | |
tree | 26da7eee851f504ee9eae69742664efcbc7a3909 | |
parent | e463de681eedfa681180d849c982c4ed014dcbf4 (diff) | |
download | gcc-28ec62e0a776f2b19c3c989448534fcee641e020.zip gcc-28ec62e0a776f2b19c3c989448534fcee641e020.tar.gz gcc-28ec62e0a776f2b19c3c989448534fcee641e020.tar.bz2 |
testsuite_performance.h: Add cstring include for memset.
2007-06-10 Benjamin Kosnik <bkoz@redhat.com>
* testsuite/util/testsuite_performance.h: Add cstring include for
memset.
From-SVN: r125600
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/util/testsuite_performance.h | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 0c67563..3a53e9a 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2007-06-10 Benjamin Kosnik <bkoz@redhat.com> + + * testsuite/util/testsuite_performance.h: Add cstring include for + memset. + 2007-06-08 Paolo Carlini <pcarlini@suse.de> * docs/html/install.html: Adjust consistently with libstdc++/31717. diff --git a/libstdc++-v3/testsuite/util/testsuite_performance.h b/libstdc++-v3/testsuite/util/testsuite_performance.h index f902dd0..7557dfe 100644 --- a/libstdc++-v3/testsuite/util/testsuite_performance.h +++ b/libstdc++-v3/testsuite/util/testsuite_performance.h @@ -1,7 +1,7 @@ // -*- C++ -*- // Testing performance utilities for the C++ library testsuite. // -// Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. +// Copyright (C) 2003, 2004, 2005, 2007 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -34,6 +34,7 @@ #include <sys/times.h> #include <sys/resource.h> #include <cstdlib> +#include <cstring> #include <string> #include <fstream> #include <iomanip> |