Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/node_realm.h
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ class Realm : public MemoryRetainer {
CppgcWrapperList cppgc_wrapper_list_;
};

class PrincipalRealm : public Realm {
class PrincipalRealm final : public Realm {
public:
PrincipalRealm(Environment* env,
v8::Local<v8::Context> context,
Expand Down
2 changes: 1 addition & 1 deletion src/node_shadow_realm.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
namespace node {
namespace shadow_realm {

class ShadowRealm : public Realm {
class ShadowRealm final : public Realm {
public:
static ShadowRealm* New(Environment* env);

Expand Down
Loading