Skip to content

Commit 4409bb8

Browse files
committed
format the code.
1 parent d61c1a3 commit 4409bb8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/rendering/utils/LZ4Decoder.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ class DefaultLZ4Decoder : public LZ4Decoder {
6060
size_t decode(uint8_t* dstBuffer, size_t dstSize, const uint8_t* srcBuffer,
6161
size_t srcSize) const override {
6262
return LZ4_decompress_safe(reinterpret_cast<const char*>(srcBuffer),
63-
reinterpret_cast<char*>(dstBuffer), static_cast<int>(srcSize), static_cast<int>(dstSize));
63+
reinterpret_cast<char*>(dstBuffer), static_cast<int>(srcSize),
64+
static_cast<int>(dstSize));
6465
}
6566
};
6667

0 commit comments

Comments
 (0)