From: Aaron Ballman Date: Thu, 27 Mar 2014 14:10:00 +0000 (+0000) Subject: The forward declare should be a struct instead of a class (to be consistent with... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=aebc63ab2ef2411c4f619915d3ff9705f97056d0;p=oota-llvm.git The forward declare should be a struct instead of a class (to be consistent with the definition, as well as to silence an MSVC C4099 warning). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204928 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.h b/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.h index ae8fd1cece6..082a340efe8 100644 --- a/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.h +++ b/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.h @@ -22,7 +22,7 @@ namespace llvm { class MCAssembler; -class MCFixupKindInfo; +struct MCFixupKindInfo; class Target; class MCObjectWriter;