summaryrefslogtreecommitdiff
path: root/src/debug_utils.h
diff options
context:
space:
mode:
authorgengjiawen <technicalcute@gmail.com>2019-04-16 23:20:38 +0800
committerRefael Ackermann <refack@gmail.com>2019-04-24 13:32:43 -0400
commit51079db826601425f4364a010a6468d734519d95 (patch)
tree740aa107c5aedea080ed33911ad0796ce7d7f806 /src/debug_utils.h
parenta763de137ceb81a19a2446b0f7286c4a309c27e4 (diff)
downloadandroid-node-v8-51079db826601425f4364a010a6468d734519d95.tar.gz
android-node-v8-51079db826601425f4364a010a6468d734519d95.tar.bz2
android-node-v8-51079db826601425f4364a010a6468d734519d95.zip
src: apply clang-tidy rule modernize-use-equals-default
PR-URL: https://github.com/nodejs/node/pull/27264 Reviewed-By: Refael Ackermann <refack@gmail.com>
Diffstat (limited to 'src/debug_utils.h')
-rw-r--r--src/debug_utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug_utils.h b/src/debug_utils.h
index 05a9370e56..ef5a4c0c47 100644
--- a/src/debug_utils.h
+++ b/src/debug_utils.h
@@ -100,7 +100,7 @@ class NativeSymbolDebuggingContext {
};
NativeSymbolDebuggingContext() = default;
- virtual ~NativeSymbolDebuggingContext() {}
+ virtual ~NativeSymbolDebuggingContext() = default;
virtual SymbolInfo LookupSymbol(void* address) { return {}; }
virtual bool IsMapped(void* address) { return false; }