Closed
Bug 807151
Opened 12 years ago
Closed 12 years ago
Remove automatic inclusion of mozilla namespace in js namespace
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
FIXED
mozilla19
People
(Reporter: terrence, Assigned: terrence)
References
Details
Attachments
(1 file)
(deleted),
patch
|
Waldo
:
review+
|
Details | Diff | Splinter Review |
Right now in js/Utility.h we do: |namespace js { using namespace mozilla; }|. This causes problems for js::ion::Range when we try to create and use mozilla::Range, because references to Range in |namespace js { namespace ion { <here> } }| get confused about which Range to use. The best solution for now is to remove the automatic addition of mozilla to js and eat the several extra mozilla:: we need to add to headers.
Attachment #676832 -
Flags: review?(jwalden+bmo)
Comment 1•12 years ago
|
||
Comment on attachment 676832 [details] [diff] [review]
v0
Review of attachment 676832 [details] [diff] [review]:
-----------------------------------------------------------------
Since mfbt stuff's more fundamental than JS stuff, a part of me thinks the |using namespace mozilla| bits should go before the |using js| bits, but perhaps there's more to be said for simple alphabetical order than there is for conceptual correctness.
Attachment #676832 -
Flags: review?(jwalden+bmo) → review+
Assignee | ||
Comment 2•12 years ago
|
||
Comment 3•12 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla19
You need to log in
before you can comment on or make changes to this bug.
Description
•