From 51079db826601425f4364a010a6468d734519d95 Mon Sep 17 00:00:00 2001 From: gengjiawen Date: Tue, 16 Apr 2019 23:20:38 +0800 Subject: src: apply clang-tidy rule modernize-use-equals-default PR-URL: https://github.com/nodejs/node/pull/27264 Reviewed-By: Refael Ackermann --- src/node.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/node.h') diff --git a/src/node.h b/src/node.h index e638ff2418..cbf9b938f1 100644 --- a/src/node.h +++ b/src/node.h @@ -248,7 +248,7 @@ NODE_EXTERN void FreeArrayBufferAllocator(ArrayBufferAllocator* allocator); class NODE_EXTERN MultiIsolatePlatform : public v8::Platform { public: - ~MultiIsolatePlatform() override { } + ~MultiIsolatePlatform() override = default; // Returns true if work was dispatched or executed. New tasks that are // posted during flushing of the queue are postponed until the next // flushing. -- cgit v1.2.1