Commit a7ddbd6f authored by Jim Meyering's avatar Jim Meyering Committed by Facebook Github Bot

folly/fibers/TimedMutex-inl.h: avoid shadowing warnings

Summary:
Fix a warning exposed by gcc's -Wshadow-compatible-local.

Rename inner "lockStolen" to "stolen".

Differential Revision: D4346385

fbshipit-source-id: 323cb6c96ecfe18b5540525f4124dbd75faf0b1b
parent 36811cc1
...@@ -61,9 +61,9 @@ TimedMutex::LockResult TimedMutex::lockHelper(WaitFunc&& waitFunc) { ...@@ -61,9 +61,9 @@ TimedMutex::LockResult TimedMutex::lockHelper(WaitFunc&& waitFunc) {
auto lockStolen = [&] { auto lockStolen = [&] {
std::lock_guard<folly::SpinLock> lg(lock_); std::lock_guard<folly::SpinLock> lg(lock_);
auto lockStolen = notifiedFiber_ != &waiter; auto stolen = notifiedFiber_ != &waiter;
notifiedFiber_ = nullptr; notifiedFiber_ = nullptr;
return lockStolen; return stolen;
}(); }();
if (lockStolen) { if (lockStolen) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment