Skip to content

Commit

Permalink
src: extra-semi warning in node_platform.h
Browse files Browse the repository at this point in the history
https://clang.llvm.org/docs/DiagnosticsReference.html#wextra-semi

PR-URL: nodejs#26330
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
  • Loading branch information
nornagon authored and BridgeAR committed Mar 4, 2019
1 parent c3386e6 commit 2bf6e71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node_platform.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class PerIsolatePlatformData :
void PostIdleTask(std::unique_ptr<v8::IdleTask> task) override;
void PostDelayedTask(std::unique_ptr<v8::Task> task,
double delay_in_seconds) override;
bool IdleTasksEnabled() override { return false; };
bool IdleTasksEnabled() override { return false; }

void Shutdown();

Expand Down

0 comments on commit 2bf6e71

Please sign in to comment.