-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove support for node 14 #173
Conversation
Overall package sizeSelf size: 7.41 MB Dependency sizes
🤖 This report was automatically generated by heaviest-objects-in-the-universe |
BenchmarksBenchmark execution time: 2024-05-17 11:00:32 Comparing candidate commit d393231 in PR branch Found 0 performance improvements and 0 performance regressions! Performance is the same for 59 metrics, 31 unstable metrics. |
bindings/profilers/wall.hh
Outdated
@@ -65,7 +65,7 @@ class WallProfiler : public Nan::ObjectWrap { | |||
bool withContexts_ = false; | |||
bool started_ = false; | |||
bool workaroundV8Bug_; | |||
bool detectV8Bug_; | |||
bool detectV8Bug_ = true; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you want to keep this declared for code comprehension purposes? Presumably, the true
value could just be inlined. Could also become a constexpr
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That was indeed my intent !
I changed the code to make the member variable static constexpr
.
dd9afee
to
d393231
Compare
What does this PR do?:
Remove support for node 14