aboutsummaryrefslogtreecommitdiff
path: root/gold/script.h
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>2009-12-14 19:53:05 +0000
committerIan Lance Taylor <ian@airs.com>2009-12-14 19:53:05 +0000
commit2ea97941102380c28117882600265c1187c6fc8b (patch)
tree8f423876f9f118fbe6f7959e60984cd13ad7430d /gold/script.h
parentab8e2090b6435823d50b29b7a255140ba6ea673f (diff)
downloadbinutils-2ea97941102380c28117882600265c1187c6fc8b.zip
binutils-2ea97941102380c28117882600265c1187c6fc8b.tar.gz
binutils-2ea97941102380c28117882600265c1187c6fc8b.tar.bz2
Revert -Wshadow changes, all changes from:
2009-12-11 Doug Kwan <dougkwan@google.com> 2009-12-11 Nick Clifton <nickc@redhat.com> * configure.ac: Remove -Wshadow when setting WARN_CXXFLAGS.
Diffstat (limited to 'gold/script.h')
-rw-r--r--gold/script.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gold/script.h b/gold/script.h
index 1afe44d..755bb79 100644
--- a/gold/script.h
+++ b/gold/script.h
@@ -261,9 +261,9 @@ class Symbol_assignment
class Script_assertion
{
public:
- Script_assertion(Expression* echeck, const char* message,
+ Script_assertion(Expression* check, const char* message,
size_t messagelen)
- : check_(echeck), message_(message, messagelen)
+ : check_(check), message_(message, messagelen)
{ }
// Check the assertion.
@@ -390,8 +390,8 @@ class Script_options
class Script_info
{
public:
- Script_info(Input_arguments* arg_inputs)
- : inputs_(arg_inputs)
+ Script_info(Input_arguments* inputs)
+ : inputs_(inputs)
{ }
// Returns the input files included because of this script.