Closed
Bug 774120
Opened 11 years ago
Closed 11 years ago
#ifdef fields only used in debug builds
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
FIXED
mozilla17
People
(Reporter: espindola, Assigned: espindola)
References
Details
Attachments
(1 file, 1 obsolete file)
1.38 KB,
patch
|
terrence
:
review+
|
Details | Diff | Splinter Review |
Clang warns about unused private fields.
Attachment #642424 -
Flags: review?(terrence)
Comment 1•11 years ago
|
||
Comment on attachment 642424 [details] [diff] [review] add #ifdef Review of attachment 642424 [details] [diff] [review]: ----------------------------------------------------------------- We only need 1 of these new DEBUG sections if we use DebugOnly. The only place we cannot safely use DebugOnly is in the AssertRootingUnnecessary case. Patch accepted once you've applied the nits. ::: js/src/gc/Root.h @@ +399,2 @@ > : cx(cx) > +#endif Just move cx init down into the DEBUG block in the function proper. ::: js/xpconnect/src/xpcprivate.h @@ +3909,2 @@ > jsid mCheck; > +#endif Just make mCheck a DebugOnly<jsid>, then we won't need either new DEBUG section. While you are here, please also make the "jsid old" in the destructor a DebugOnly<jsid> and kill the DEBUG section there as well.
Attachment #642424 -
Flags: review?(terrence) → review+
Assignee | ||
Comment 2•11 years ago
|
||
Using DebugOnly is the the right think in here. We would still have a mCheck member that would be private and unused, which is exactly what the warning is about. I did implement the other review request.
Assignee | ||
Updated•11 years ago
|
Attachment #642424 -
Attachment is obsolete: true
Comment 3•11 years ago
|
||
Comment on attachment 642701 [details] [diff] [review] updated patch Review of attachment 642701 [details] [diff] [review]: ----------------------------------------------------------------- I still don't like the change to xpcprivate, but it's not worth quibbling over for something in XPConnect.
Attachment #642701 -
Flags: review?(terrence) → review+
Comment 4•11 years ago
|
||
https://hg.mozilla.org/mozilla-central/rev/808279a147bf
Status: ASSIGNED → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla17
You need to log in
before you can comment on or make changes to this bug.
Description
•