Closed
Bug 1617528
Opened 5 years ago
Closed 5 years ago
Enable modernize-use-using at review phase
Categories
(Developer Infrastructure :: Source Code Analysis, task)
Developer Infrastructure
Source Code Analysis
Tracking
(firefox75 fixed)
RESOLVED
FIXED
mozilla75
Tracking | Status | |
---|---|---|
firefox75 | --- | fixed |
People
(Reporter: Sylvestre, Assigned: Sylvestre)
References
(Blocks 1 open bug)
Details
Attachments
(1 file)
(deleted),
text/x-phabricator-request
|
Details |
typedef are less readable than using
for example
typedef void (*NativeIntersectionObserverCallback)(
const Sequence<OwningNonNull<DOMIntersectionObserverEntry>>& aEntries);
becomes
using NativeIntersectionObserverCallback =
void (*)(const Sequence<OwningNonNull<DOMIntersectionObserverEntry>>&);
Assignee | ||
Updated•5 years ago
|
Assignee: nobody → sledru
Assignee | ||
Comment 1•5 years ago
|
||
Pushed by sledru@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/00737a9c524c
Enable modernize-use-using at review phase r=andi
Comment 3•5 years ago
|
||
bugherder |
Status: NEW → RESOLVED
Closed: 5 years ago
status-firefox75:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla75
Updated•2 years ago
|
Product: Firefox Build System → Developer Infrastructure
You need to log in
before you can comment on or make changes to this bug.
Description
•