Closed
Bug 827086
Opened 12 years ago
Closed 12 years ago
Compilation error "a space is required between consecutive right angle brackets (use '> >')" in dom/UndoManager.h
Categories
(Core :: DOM: Core & HTML, defect)
Tracking
()
RESOLVED
FIXED
mozilla20
People
(Reporter: smontagu, Assigned: smontagu)
References
Details
Attachments
(1 file, 1 obsolete file)
2.39 KB,
patch
|
Ms2ger
:
review+
|
Details | Diff | Splinter Review |
Building mozilla-central today I get the following error:
In file included from /home/smontagu/mozwork/hgtree/mozilla/obj-x86_64-unknown-linux-gnu/dom/bindings/ElementBinding.cpp:23:
../../dist/include/mozilla/dom/UndoManager.h:41:65: error: a space is required between consecutive right angle brackets (use '> >')
Nullable<nsTArray<nsRefPtr<nsIUndoManagerTransaction>>>& aItems,
^~
> >
1 error generated.
Assignee | ||
Comment 1•12 years ago
|
||
Adding the spaces like the man said fixes it for me.
Attachment #698401 -
Flags: review?(wchen)
Assignee | ||
Updated•12 years ago
|
Attachment #698401 -
Attachment is obsolete: true
Attachment #698401 -
Flags: review?(wchen)
Assignee | ||
Comment 2•12 years ago
|
||
Added a couple more places
Assignee: nobody → smontagu
Attachment #698403 -
Flags: review?(wchen)
Comment 3•12 years ago
|
||
Comment on attachment 698403 [details] [diff] [review]
Add the spaces
Review of attachment 698403 [details] [diff] [review]:
-----------------------------------------------------------------
r=me, though I'd prefer symmetric spaces (as in
Nullable< nsTArray< nsRefPtr<nsIUndoManagerTransaction> > >
).
Attachment #698403 -
Flags: review?(wchen) → review+
Comment 4•12 years ago
|
||
That is not the common coding style.
It should be
Nullable<nsTArray<nsRefPtr<nsIUndoManagerTransaction> > >
Assignee | ||
Comment 5•12 years ago
|
||
Comment 6•12 years ago
|
||
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla20
Updated•6 years ago
|
Component: DOM → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•