[lld] r250028 - This doesn't need to be virtual anymore.

Rafael Espindola via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 12 04:26:55 PDT 2015


Author: rafael
Date: Mon Oct 12 06:26:55 2015
New Revision: 250028

URL: http://llvm.org/viewvc/llvm-project?rev=250028&view=rev
Log:
This doesn't need to be virtual anymore.

Modified:
    lld/trunk/ELF/InputFiles.h

Modified: lld/trunk/ELF/InputFiles.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/InputFiles.h?rev=250028&r1=250027&r2=250028&view=diff
==============================================================================
--- lld/trunk/ELF/InputFiles.h (original)
+++ lld/trunk/ELF/InputFiles.h Mon Oct 12 06:26:55 2015
@@ -35,7 +35,6 @@ class InputFile {
 public:
   enum Kind { ObjectKind, SharedKind, ArchiveKind };
   Kind kind() const { return FileKind; }
-  virtual ~InputFile() {}
 
   StringRef getName() const { return MB.getBufferIdentifier(); }
 




More information about the llvm-commits mailing list