From 986864778683a00bd7ddb5daf4b61a1b7daba054 Mon Sep 17 00:00:00 2001 From: Urakov Alexandr Date: Wed, 21 Sep 2022 12:20:13 +0300 Subject: [PATCH] [PT] Fix compilation due to `DebugInfoExtractor` changes Signed-off-by: Urakov Alexandr --- runtime/tooling/pt_js_extractor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/tooling/pt_js_extractor.h b/runtime/tooling/pt_js_extractor.h index cbd997185..9929d83ac 100644 --- a/runtime/tooling/pt_js_extractor.h +++ b/runtime/tooling/pt_js_extractor.h @@ -29,7 +29,7 @@ using panda::panda_file::File; class PtJSExtractor : public DebugInfoExtractor { public: explicit PtJSExtractor(const File *pf) : DebugInfoExtractor(pf) {} - virtual ~PtJSExtractor() = default; + ~PtJSExtractor() override = default; template bool MatchWithLine(const Callback &cb, int32_t line) -- Gitee