summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2016-11-10 20:23:32 +0000
committerZachary Turner <zturner@google.com>2016-11-10 20:23:32 +0000
commit67e788099eb9cf0ffc6b03d3667b66dc9916975a (patch)
tree6ba2574bd88c9cfeefc9c29df86327980a50693b /include
parent48fbf5cc1a80be865e734075cc99eec477fb86c6 (diff)
Fix initialization order error.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@286497 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/Format.h2
1 files changed, 1 insertions, 1 deletions
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<uint8_t> B, uint32_t IL, Optional<uint64_t> 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)