diff options
author | Jason Molenda <jmolenda@apple.com> | 2012-10-04 22:47:07 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2012-10-04 22:47:07 +0000 |
commit | ccd41e55f1cd1a2a99bd357076638954f419429a (patch) | |
tree | 7093042eeeef422e29e4448976973272005341ca /lldb/source/Core/StreamCallback.cpp | |
parent | bfeb28087ae76b6c241a6dc1727429fe8f6f76a7 (diff) | |
download | bcm5719-llvm-ccd41e55f1cd1a2a99bd357076638954f419429a.tar.gz bcm5719-llvm-ccd41e55f1cd1a2a99bd357076638954f419429a.zip |
Ran the sources through the compiler with -Wshadow warnings
enabled after we'd found a few bugs that were caused by shadowed
local variables; the most important issue this turned up was
a common mistake of trying to obtain a mutex lock for the scope
of a code block by doing
Mutex::Locker(m_map_mutex);
This doesn't assign the lock object to a local variable; it is
a temporary that has its dtor called immediately. Instead,
Mutex::Locker locker(m_map_mutex);
does what is intended. For some reason -Wshadow happened to
highlight these as shadowed variables.
I also fixed a few obivous and easy shadowed variable issues
across the code base but there are a couple dozen more that
should be fixed when someone has a free minute.
<rdar://problem/12437585>
llvm-svn: 165269
Diffstat (limited to 'lldb/source/Core/StreamCallback.cpp')
-rw-r--r-- | lldb/source/Core/StreamCallback.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/StreamCallback.cpp b/lldb/source/Core/StreamCallback.cpp index edce04e8ed8..63f3c9f8b2d 100644 --- a/lldb/source/Core/StreamCallback.cpp +++ b/lldb/source/Core/StreamCallback.cpp @@ -35,7 +35,7 @@ StreamCallback::~StreamCallback () StreamString & StreamCallback::FindStreamForThread(lldb::tid_t cur_tid) { - Mutex::Locker (m_collection_mutex); + Mutex::Locker locker(m_collection_mutex); collection::iterator iter = m_accumulated_data.find (cur_tid); if (iter == m_accumulated_data.end()) { |