From 67e788099eb9cf0ffc6b03d3667b66dc9916975a Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Thu, 10 Nov 2016 20:23:32 +0000 Subject: [PATCH] Fix initialization order error. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@286497 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/Format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.50.1