[Lldb-commits] [lldb] [lldb] Check for abstract methods implementation in Scripted Plugin Objects (PR #71260)

Alex Langford via lldb-commits lldb-commits at lists.llvm.org
Fri Nov 3 18:08:51 PDT 2023


================
@@ -28,6 +28,10 @@ class ScriptedProcessInterface : virtual public ScriptedInterface {
     return {llvm::make_error<UnimplementedError>()};
   }
 
+  llvm::SmallVector<llvm::StringLiteral> GetAbstractMethods() const override {
+    return {};
+  }
----------------
bulbazord wrote:

Same here

https://github.com/llvm/llvm-project/pull/71260


More information about the lldb-commits mailing list