Skip to content

Commit dc2119a

Browse files
nornagonBridgeAR
authored andcommitted
src: fix more extra-semi warnings
PR-URL: #26340 Reviewed-By: Masashi Hirano <shisama07@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
1 parent d2e9e52 commit dc2119a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/inspector_js_api.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -320,4 +320,4 @@ void Initialize(Local<Object> target, Local<Value> unused,
320320
} // namespace node
321321

322322
NODE_MODULE_CONTEXT_AWARE_INTERNAL(inspector,
323-
node::inspector::Initialize);
323+
node::inspector::Initialize)

src/node_http2.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ using performance::PerformanceEntry;
3535
#define DEFAULT_MAX_SETTINGS 10
3636

3737
// Default maximum total memory cap for Http2Session.
38-
#define DEFAULT_MAX_SESSION_MEMORY 1e7;
38+
#define DEFAULT_MAX_SESSION_MEMORY 1e7
3939

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

src/node_messaging.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class DeserializerDelegate : public ValueDeserializer::Delegate {
6363
return MaybeLocal<Object>();
6464
CHECK_LE(id, message_ports_.size());
6565
return message_ports_[id]->object(isolate);
66-
};
66+
}
6767

6868
MaybeLocal<SharedArrayBuffer> GetSharedArrayBufferFromId(
6969
Isolate* isolate, uint32_t clone_id) override {

0 commit comments

Comments
 (0)