Closed
Bug 1344356
Opened 8 years ago
Closed 8 years ago
-Wunused-lambda-capture build warnings in gfx code
Categories
(Core :: Graphics: Layers, defect)
Core
Graphics: Layers
Tracking
()
RESOLVED
FIXED
mozilla55
People
(Reporter: dholbert, Assigned: rhunt)
References
Details
(Whiteboard: [gfx-noted])
Attachments
(1 file)
1.97 KB,
patch
|
kats
:
review+
|
Details | Diff | Splinter Review |
clang trunk has added a new build warning "-Wunused-lambda-capture" for variables captured by lambda functions & then unused.
Filing this bug for 2 instances in gfx/layers code:
gfx/layers/composite/AsyncCompositionManager.cpp:809:15 [-Wunused-lambda-capture] lambda capture 'aOutFoundRoot' is not used
gfx/layers/ipc/CompositorBridgeParent.cpp:469:31 [-Wunused-lambda-capture] lambda capture 'this' is not use
}
Assignee | ||
Comment 1•8 years ago
|
||
Attachment #8844016 -
Flags: review?(bugmail)
Assignee | ||
Updated•8 years ago
|
Assignee: nobody → rhunt
Whiteboard: [gfx-noted]
Comment 2•8 years ago
|
||
Comment on attachment 8844016 [details] [diff] [review]
fix-unused.patch
Review of attachment 8844016 [details] [diff] [review]:
-----------------------------------------------------------------
Thanks! Make sure to put the bug number in the commit message.
Attachment #8844016 -
Flags: review?(bugmail) → review+
Pushed by rhunt@eqrion.net:
https://hg.mozilla.org/integration/mozilla-inbound/rev/60b5be6bc57d
Fix unused lambda capture warnings r=kats
Comment 4•8 years ago
|
||
bugherder |
Status: NEW → RESOLVED
Closed: 8 years ago
status-firefox55:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla55
Updated•8 years ago
|
Updated•8 years ago
|
Blocks: Wunused-lambda-capture
You need to log in
before you can comment on or make changes to this bug.
Description
•