Closed
Bug 873486
Opened 12 years ago
Closed 12 years ago
MOZ_OVERRIDE in method definition breaks compilation for C++11
Categories
(Core :: Graphics: Layers, defect)
Tracking
()
RESOLVED
FIXED
mozilla24
People
(Reporter: _AtilA_, Assigned: _AtilA_)
References
Details
Attachments
(2 files, 1 obsolete file)
555 bytes,
patch
|
mattwoodrow
:
review+
|
Details | Diff | Splinter Review |
915 bytes,
patch
|
Details | Diff | Splinter Review |
C++11 specs says that the virt-specifiers ("override" and "final") shall only appear in the declaration of a virtual member function. But TextureHostOGL.h has a MOZ_OVERRIDE (so override) after SetBuffer(..) declaracion, causing gcc-4.7 with C++11 to break compliation.
Assignee | ||
Updated•12 years ago
|
Assignee: nobody → atilag
Assignee | ||
Updated•12 years ago
|
Attachment #751042 -
Flags: review?(matt.woodrow)
Updated•12 years ago
|
Attachment #751042 -
Flags: review?(matt.woodrow) → review+
Comment 1•12 years ago
|
||
(In reply to Juan Gomez [:_AtilA_] from comment #0)
> C++11 specs says that the virt-specifiers ("override" and "final") shall
> only appear in the declaration of a virtual member function. But
> TextureHostOGL.h has a MOZ_OVERRIDE (so override) after SetBuffer(..)
> declaracion, causing gcc-4.7 with C++11 to break compliation.
To be clear, this is TextureHostOGL.cpp (not .h), and the faulty MOZ_OVERRIDE in question appears after the method *definition* (not the declaration), and that's the problem.
(correct me if I'm wrong)
Comment 2•12 years ago
|
||
Juan: could you attach an updated version of the patch with a commit message (including r=mattwoodrow) and with the "user" patch-header included so that the patch is correctly attributed to you?
See this page for how to do that, if you're not sure how:
https://developer.mozilla.org/en-US/docs/Mercurial_FAQ#How_can_I_generate_a_patch_for_somebody_else_to_check-in_for_me.3F
After that, you should be able to mark this bug as "checkin-needed", and then someone can come along and trivially import & land the patch on your behalf.
Status: NEW → ASSIGNED
Flags: needinfo?(atilag)
Assignee | ||
Comment 3•12 years ago
|
||
Attachment #751042 -
Attachment is obsolete: true
Flags: needinfo?(atilag)
Assignee | ||
Comment 4•12 years ago
|
||
(In reply to Daniel Holbert [:dholbert] from comment #1)
> (In reply to Juan Gomez [:_AtilA_] from comment #0)
> > C++11 specs says that the virt-specifiers ("override" and "final") shall
> > only appear in the declaration of a virtual member function. But
> > TextureHostOGL.h has a MOZ_OVERRIDE (so override) after SetBuffer(..)
> > declaracion, causing gcc-4.7 with C++11 to break compliation.
>
> To be clear, this is TextureHostOGL.cpp (not .h), and the faulty
> MOZ_OVERRIDE in question appears after the method *definition* (not the
> declaration), and that's the problem.
>
> (correct me if I'm wrong)
Oh! I confused things a little, but you are right!.
I submitted a new patch using git forma-patch, it has author information and a verbose commit message. I read this format is importable by Mercurial, if not, I'll try hg.
Comment 5•12 years ago
|
||
Comment on attachment 751042 [details] [diff] [review]
Removes MOZ_OVERRIDE from method definition.
[un-obsoleting the original r+'d patch]
In cases like this one where you've got a r+'d patch and you're attaching an updated version for someone else to checkin, it's best *not* to obsolete the r+'d patch, to make it more immediately-clear that the patch has indeed been reviewed.
(And then perhaps add "(for checkin)" to the description field for the actual ready-to-land patch, to make it clear which version is intended for checkin)
Attachment #751042 -
Attachment is obsolete: false
Assignee | ||
Comment 6•12 years ago
|
||
Well formatted commit message.
Attachment #751042 -
Attachment is obsolete: true
Attachment #751681 -
Attachment is obsolete: true
Assignee | ||
Updated•12 years ago
|
Attachment #751689 -
Attachment description: Removes vir-specifier MOZ_OVERRIDE in method definition → patch for checkin (same as r+'d patch, now with patch headers)
Assignee | ||
Updated•12 years ago
|
Attachment #751042 -
Attachment is obsolete: false
Assignee | ||
Updated•12 years ago
|
Keywords: checkin-needed
Comment 7•12 years ago
|
||
Keywords: checkin-needed
Comment 8•12 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla24
You need to log in
before you can comment on or make changes to this bug.
Description
•