Closed
Bug 871007
Opened 13 years ago
Closed 12 years ago
fix clang warning about class/struct mismatch for JS::RuntimeStats
Categories
(Core :: DOM: Core & HTML, defect)
Core
DOM: Core & HTML
Tracking
()
RESOLVED
FIXED
mozilla24
People
(Reporter: froydnj, Unassigned)
Details
Attachments
(1 file)
|
700 bytes,
patch
|
bzbarsky
:
review+
|
Details | Diff | Splinter Review |
In file included from /opt/build/froydnj/build-mc/dom/bindings/BatteryManagerBinding.cpp:9:
/home/froydnj/src/mozilla-central-official.git/dom/workers/WorkerPrivate.h:44:16: warning: class 'RuntimeStats' was previously declared as a struct [-Wmismatched-tags]
namespace JS { class RuntimeStats; }
^
../../dist/include/js/MemoryMetrics.h:361:8: note: previous use is here
struct RuntimeStats
^
/home/froydnj/src/mozilla-central-official.git/dom/workers/WorkerPrivate.h:44:16: note: did you mean struct here?
namespace JS { class RuntimeStats; }
^~~~~
struct
| Reporter | ||
Comment 1•13 years ago
|
||
Attachment #748211 -
Flags: review?(bzbarsky)
Comment 2•13 years ago
|
||
Comment on attachment 748211 [details] [diff] [review]
fix clang warning about class/struct mismatch for JS::RuntimeStats
r=me
Attachment #748211 -
Flags: review?(bzbarsky) → review+
Comment 3•12 years ago
|
||
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla24
| Assignee | ||
Updated•7 years ago
|
Component: DOM → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•