Skip to content

Commit cd9874a

Browse files
committed
Fix clang format issue
Signed-off-by: Arvind Sudarsanam <[email protected]>
1 parent 0b4ad71 commit cd9874a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/Support/PropertySetIO.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,8 @@ template <> PropertyValue::Type PropertyValue::getTypeTag<byte *>() {
141141
return BYTE_ARRAY;
142142
}
143143

144-
PropertyValue::PropertyValue(const byte *Data, SizeTy DataBitSize) : Ty(BYTE_ARRAY) {
144+
PropertyValue::PropertyValue(const byte *Data, SizeTy DataBitSize)
145+
: Ty(BYTE_ARRAY) {
145146
constexpr int ByteSizeInBits = 8;
146147
SizeTy DataSize = (DataBitSize + (ByteSizeInBits - 1)) / ByteSizeInBits;
147148
constexpr size_t SizeFieldSize = sizeof(SizeTy);

0 commit comments

Comments
 (0)