diff options
author | Ian Lance Taylor <ian@airs.com> | 2009-12-14 19:53:05 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 2009-12-14 19:53:05 +0000 |
commit | 2ea97941102380c28117882600265c1187c6fc8b (patch) | |
tree | 8f423876f9f118fbe6f7959e60984cd13ad7430d /gold/token.h | |
parent | ab8e2090b6435823d50b29b7a255140ba6ea673f (diff) | |
download | binutils-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/token.h')
-rw-r--r-- | gold/token.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gold/token.h b/gold/token.h index d477be1..dcf00b6 100644 --- a/gold/token.h +++ b/gold/token.h @@ -91,8 +91,8 @@ class Task_list class Task_token { public: - Task_token(bool tis_blocker) - : is_blocker_(tis_blocker), blockers_(0), writer_(NULL), waiting_() + Task_token(bool is_blocker) + : is_blocker_(is_blocker), blockers_(0), writer_(NULL), waiting_() { } ~Task_token() |