Scheduling.cpp: using mozilla::TimeStamp;
Categories
(Core :: JavaScript: GC, task, P3)
Tracking
()
| Tracking | Status | |
|---|---|---|
| firefox120 | --- | fixed |
People
(Reporter: Sylvestre, Assigned: shahrushil74, Mentored)
References
(Blocks 1 open bug)
Details
(Keywords: good-first-bug, Whiteboard: [lang=c++])
Attachments
(1 file)
Filling as a good first bug to learn workflows.
https://searchfox.org/mozilla-central/source/js/src/gc/Scheduling.cpp#31
using decl 'TimeStamp' is unused
Tutorial to contribute:
https://firefox-source-docs.mozilla.org/contributing/contribution_quickref.html
https://firefox-source-docs.mozilla.org/contributing/stack_quickref.html
Updated•2 years ago
|
Comment 1•2 years ago
|
||
Hi, I an outreachy applicant for december cohorot. I am interested in working with this issue. Please assign it to me.
| Reporter | ||
Comment 2•2 years ago
|
||
it will be assigned to you as soon as you submit a patch for review :)
Updated•2 years ago
|
| Assignee | ||
Comment 3•2 years ago
|
||
Hi, updateHighFrequencyMode method is using mozilla::TimeStamp
| Reporter | ||
Comment 4•2 years ago
|
||
yeah, it is expected. mozilla:: is providing the namespace.
| Assignee | ||
Comment 5•2 years ago
|
||
Hi, function is using TimeStamp then how can it be unused?
Comment 6•2 years ago
|
||
mozilla::TimeStamp is being used, so we still need the header include. If you click on the link in comment 0, you'll see this is about the using declaration using mozilla::TimeStamp;. This would let somebody write TimeStamp in this file, without the namespace mozilla, but TimeStamp is only used in this file with the explicit namespace, so the using is not needed.
| Assignee | ||
Comment 7•2 years ago
|
||
Updated•2 years ago
|
| Assignee | ||
Comment 8•2 years ago
|
||
Thanks Andrew for clarity.
| Assignee | ||
Comment 9•2 years ago
|
||
Hi, I submitted patch can someone review
Comment 10•2 years ago
|
||
Comment 11•2 years ago
|
||
| bugherder | ||
Description
•