[PATCH] D154776: IFSStub destructor should be virtual

Haowei Wu via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 10 12:49:13 PDT 2023


This revision was automatically updated to reflect the committed changes.
Closed by commit rG0fd4175907b4: [ifs] IFSStub destructor should be virtual (authored by AMP999, committed by haowei).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D154776/new/

https://reviews.llvm.org/D154776

Files:
  llvm/include/llvm/InterfaceStub/IFSStub.h


Index: llvm/include/llvm/InterfaceStub/IFSStub.h
===================================================================
--- llvm/include/llvm/InterfaceStub/IFSStub.h
+++ llvm/include/llvm/InterfaceStub/IFSStub.h
@@ -97,6 +97,7 @@
   IFSStub() = default;
   IFSStub(const IFSStub &Stub);
   IFSStub(IFSStub &&Stub);
+  virtual ~IFSStub() = default;
 };
 
 // Create a alias class for IFSStub.


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D154776.538779.patch
Type: text/x-patch
Size: 389 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230710/b383ee2d/attachment.bin>


More information about the llvm-commits mailing list