From 7c20e75d81525e2b0f7986de5742574b2ed3f23d Mon Sep 17 00:00:00 2001 From: Dave Bartolomeo Date: Thu, 24 Dec 2015 18:25:54 +0000 Subject: [PATCH] Fix initializer order warning in TypeRecord.h git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@256386 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/DebugInfo/CodeView/TypeRecord.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.34.1