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•1 year ago
|
Comment 1•1 year 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•1 year ago
|
||
it will be assigned to you as soon as you submit a patch for review :)
Updated•1 year ago
|
Assignee | ||
Comment 3•1 year ago
|
||
Hi, updateHighFrequencyMode method is using mozilla::TimeStamp
Reporter | ||
Comment 4•1 year ago
|
||
yeah, it is expected. mozilla:: is providing the namespace.
Assignee | ||
Comment 5•1 year ago
|
||
Hi, function is using TimeStamp then how can it be unused?
Comment 6•1 year 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•1 year ago
|
||
Updated•1 year ago
|
Assignee | ||
Comment 8•1 year ago
|
||
Thanks Andrew for clarity.
Assignee | ||
Comment 9•1 year ago
|
||
Hi, I submitted patch can someone review
Comment 10•1 year ago
|
||
Comment 11•1 year ago
|
||
bugherder |
Description
•