Closed
Bug 1043605
Opened 10 years ago
Closed 10 years ago
error: 'mutationCount' was not declared in this scope
Categories
(Firefox OS Graveyard :: GonkIntegration, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: mschwart, Assigned: n.nethercote)
Details
Attachments
(1 file)
(deleted),
patch
|
n.nethercote
:
review+
|
Details | Diff | Splinter Review |
From change https://bugzilla.mozilla.org/show_bug.cgi?id=1038601, HashTable::mutationCount is declared conditionally based on the JS_DEBUG pound define [1] but used conditionally by DEBUG pound define [2]. In some builds, DEBUG is defined but JS_DEBUG is not.
Perhaps mutationCount should be pulled out and wrapped by DEBUG instead.
[1] https://github.com/mozilla/gecko-dev/blob/256a1f168b345758d1ce83f6575d6543f8bec738/js/public/HashTable.h#L1005
[2] https://github.com/mozilla/gecko-dev/blob/256a1f168b345758d1ce83f6575d6543f8bec738/js/public/HashTable.h#L1089
Assignee | ||
Comment 1•10 years ago
|
||
Oh, since I've posted a fix patch as a follow-up in bug 1038601, how about we just continue things there?
Status: NEW → RESOLVED
Closed: 10 years ago
Resolution: --- → DUPLICATE
Comment 2•10 years ago
|
||
I'm reopening this bug because a patch has already landed in bug 1038601. It's confusing to post follow-up patches to bugs that are already RESOLVED.
Status: RESOLVED → REOPENED
Resolution: DUPLICATE → ---
Assignee | ||
Comment 3•10 years ago
|
||
Moving the patch from bug 1038601 to here.
Assignee | ||
Updated•10 years ago
|
Assignee: nobody → n.nethercote
Status: REOPENED → ASSIGNED
Assignee | ||
Comment 4•10 years ago
|
||
Comment on attachment 8470641 [details] [diff] [review]
Fix up DEBUG/JS_DEBUG confusion in HashTable.h
Review of attachment 8470641 [details] [diff] [review]:
-----------------------------------------------------------------
Carrying over r+ from bug bug 1038601.
Attachment #8470641 -
Flags: review+
Assignee | ||
Comment 5•10 years ago
|
||
Comment 6•10 years ago
|
||
Ta!
Comment 7•10 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 10 years ago → 10 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•