Skip to content
This repository was archived by the owner on Mar 4, 2020. It is now read-only.

Commit 6f2df27

Browse files
nornagonnitsakh
authored andcommitted
fix: more extra-semi warnings
1 parent 5e1cca8 commit 6f2df27

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/inspector_js_api.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,4 +316,4 @@ void Initialize(Local<Object> target, Local<Value> unused,
316316
} // namespace node
317317

318318
NODE_MODULE_CONTEXT_AWARE_INTERNAL(inspector,
319-
node::inspector::Initialize);
319+
node::inspector::Initialize)

src/node_http2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ using performance::PerformanceEntry;
3232
#define DEFAULT_MAX_SETTINGS 10
3333

3434
// Default maximum total memory cap for Http2Session.
35-
#define DEFAULT_MAX_SESSION_MEMORY 1e7;
35+
#define DEFAULT_MAX_SESSION_MEMORY 1e7
3636

3737
// These are the standard HTTP/2 defaults as specified by the RFC
3838
#define DEFAULT_SETTINGS_HEADER_TABLE_SIZE 4096

src/node_messaging.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class DeserializerDelegate : public ValueDeserializer::Delegate {
5959
return MaybeLocal<Object>();
6060
CHECK_LE(id, message_ports_.size());
6161
return message_ports_[id]->object(isolate);
62-
};
62+
}
6363

6464
MaybeLocal<SharedArrayBuffer> GetSharedArrayBufferFromId(
6565
Isolate* isolate, uint32_t clone_id) override {

0 commit comments

Comments
 (0)