summaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/20_util/binders.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libstdc++-v3/testsuite/20_util/binders.cc')
-rw-r--r--libstdc++-v3/testsuite/20_util/binders.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libstdc++-v3/testsuite/20_util/binders.cc b/libstdc++-v3/testsuite/20_util/binders.cc
index 6dd45e3ff96..a12d3b68146 100644
--- a/libstdc++-v3/testsuite/20_util/binders.cc
+++ b/libstdc++-v3/testsuite/20_util/binders.cc
@@ -1,6 +1,6 @@
// 2001-06-11 Benjamin Kosnik <bkoz@redhat.com>
-// Copyright (C) 2001 Free Software Foundation, Inc.
+// Copyright (C) 2001, 2003 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
@@ -27,8 +27,8 @@
class Elem
{
public:
- void print(int i) const { }
- void modify(int i) { }
+ void print(int) const { }
+ void modify(int) { }
};
// libstdc++/3113