From f18291d4a0fe1a6fccc7763bf2d21f87ce3e2c77 Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Tue, 25 Feb 2025 16:12:21 -0500 Subject: Refactor analysis pipeline completion logic and add support for re-enabling analysis after an abort. --- plugins/msvc_rtti/plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/msvc_rtti/plugin.cpp') diff --git a/plugins/msvc_rtti/plugin.cpp b/plugins/msvc_rtti/plugin.cpp index 17de1dc7..226c14fa 100644 --- a/plugins/msvc_rtti/plugin.cpp +++ b/plugins/msvc_rtti/plugin.cpp @@ -80,7 +80,7 @@ extern "C" { // Run rtti before debug info is applied. msvcMetaWorkflow->Insert("core.module.loadDebugInfo", "plugin.msvc.rttiAnalysis"); // Run vft after functions have analyzed (so that the virtual functions have analyzed) - msvcMetaWorkflow->Insert("core.module.notifyCompletion", "plugin.msvc.vftAnalysis"); + msvcMetaWorkflow->Insert("core.module.deleteUnusedAutoFunctions", "plugin.msvc.vftAnalysis"); Workflow::RegisterWorkflow(msvcMetaWorkflow); return true; -- cgit v1.3.1