ARM: MSVC does not support = default
authorSaleem Abdulrasool <compnerd@compnerd.org>
Sun, 27 Apr 2014 05:28:10 +0000 (05:28 +0000)
committerSaleem Abdulrasool <compnerd@compnerd.org>
Sun, 27 Apr 2014 05:28:10 +0000 (05:28 +0000)
Explicitly "implement" the destructor as MSVC does not support defaulted methods
yet.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207350 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp

index d1c8926e7ea5929b5ece5e050c2f1781fbb3578c..2372693636acf7d5e0e7f594961fac1c12425b2f 100644 (file)
@@ -23,7 +23,7 @@ public:
     : MCWinCOFFObjectTargetWriter(COFF::IMAGE_FILE_MACHINE_ARMNT) {
     assert(!Is64Bit && "AArch64 support not yet implemented");
   }
-  virtual ~ARMWinCOFFObjectWriter() = default;
+  virtual ~ARMWinCOFFObjectWriter() { }
 
   unsigned getRelocType(const MCValue &Target, const MCFixup &Fixup,
                         bool IsCrossSection) const override;