diff options
author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-06-10 09:14:43 +0000 |
---|---|---|
committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-06-10 09:14:43 +0000 |
commit | 914b41f43d1f0a99e948d4fdb9a0b3889fe409bb (patch) | |
tree | 26da7eee851f504ee9eae69742664efcbc7a3909 /libstdc++-v3 | |
parent | 5b23b49ffb0265db99b9f659ea0756d12e9fc852 (diff) | |
download | gcc-914b41f43d1f0a99e948d4fdb9a0b3889fe409bb.tar.gz |
2007-06-10 Benjamin Kosnik <bkoz@redhat.com>
* testsuite/util/testsuite_performance.h: Add cstring include for
memset.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@125600 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-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 0c675635f34..3a53e9ac322 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 f902dd0c6d9..7557dfe3b09 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> |