From: Dave Bartolomeo Date: Thu, 24 Dec 2015 18:25:54 +0000 (+0000) Subject: Fix initializer order warning in TypeRecord.h X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=7c20e75d81525e2b0f7986de5742574b2ed3f23d Fix initializer order warning in TypeRecord.h git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@256386 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/DebugInfo/CodeView/TypeRecord.h b/include/llvm/DebugInfo/CodeView/TypeRecord.h index 713b70fdccb..21755f5d9b0 100644 --- a/include/llvm/DebugInfo/CodeView/TypeRecord.h +++ b/include/llvm/DebugInfo/CodeView/TypeRecord.h @@ -241,8 +241,8 @@ private: class BitFieldRecord : TypeRecord { public: BitFieldRecord(TypeIndex Type, uint8_t BitSize, uint8_t BitOffset) - : TypeRecord(TypeRecordKind::BitField), Type(Type), BitOffset(BitOffset), - BitSize(BitSize) {} + : TypeRecord(TypeRecordKind::BitField), Type(Type), BitSize(BitSize), + BitOffset(BitOffset) {} TypeIndex getType() const { return Type; } uint8_t getBitOffset() const { return BitOffset; }