From: Saleem Abdulrasool Date: Sun, 27 Apr 2014 05:28:10 +0000 (+0000) Subject: ARM: MSVC does not support = default X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f090afddb461c3e2ac4855e27908be87568db9dd;p=oota-llvm.git ARM: MSVC does not support = default 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 --- diff --git a/lib/Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp b/lib/Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp index d1c8926e7ea..2372693636a 100644 --- a/lib/Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp +++ b/lib/Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp @@ -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;