From: Zachary Turner Date: Thu, 10 Nov 2016 20:23:32 +0000 (+0000) Subject: Fix initialization order error. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=67e788099eb9cf0ffc6b03d3667b66dc9916975a;p=llvm Fix initialization order error. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@286497 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/Format.h b/include/llvm/Support/Format.h index 2e055216fbf..60800283623 100644 --- a/include/llvm/Support/Format.h +++ b/include/llvm/Support/Format.h @@ -218,7 +218,7 @@ class FormattedBytes { public: FormattedBytes(ArrayRef B, uint32_t IL, Optional O, uint32_t NPL, uint8_t BGS, bool U, bool A) - : Bytes(B), IndentLevel(IL), FirstByteOffset(O), NumPerLine(NPL), + : Bytes(B), FirstByteOffset(O), IndentLevel(IL), NumPerLine(NPL), ByteGroupSize(BGS), Upper(U), ASCII(A) { if (ByteGroupSize > NumPerLine)