From: Douglas Gregor Date: Fri, 19 Mar 2010 15:31:09 +0000 (+0000) Subject: struct -> class, to silence a Clang warning X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=1a07bc5cf4dfa8e4b2fcde47de95839a5d4d7626;p=oota-llvm.git struct -> class, to silence a Clang warning git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98961 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/MC/MCAssembler.h b/include/llvm/MC/MCAssembler.h index 8eb8e632ad0..c68fb2ddf25 100644 --- a/include/llvm/MC/MCAssembler.h +++ b/include/llvm/MC/MCAssembler.h @@ -37,7 +37,7 @@ class TargetAsmBackend; /// MCAsmFixup - Represent a fixed size region of bytes inside some fragment /// which needs to be rewritten. This region will either be rewritten by the /// assembler or cause a relocation entry to be generated. -struct MCAsmFixup { +class MCAsmFixup { /// Offset - The offset inside the fragment which needs to be rewritten. uint64_t Offset;