summaryrefslogtreecommitdiff
path: root/gold/workqueue.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/workqueue.h
parentab8e2090b6435823d50b29b7a255140ba6ea673f (diff)
downloadbinutils-gdb-2ea97941102380c28117882600265c1187c6fc8b.tar.gz
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/workqueue.h')
-rw-r--r--gold/workqueue.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gold/workqueue.h b/gold/workqueue.h
index a17ec9df6a5..75452241d80 100644
--- a/gold/workqueue.h
+++ b/gold/workqueue.h
@@ -150,8 +150,8 @@ class Task_function : public Task
// RUNNER and BLOCKER should be allocated using new, and will be
// deleted after the task runs.
Task_function(Task_function_runner* runner, Task_token* blocker,
- const char* tname)
- : runner_(runner), blocker_(blocker), name_(tname)
+ const char* name)
+ : runner_(runner), blocker_(blocker), name_(name)
{ }
~Task_function()