File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
third-party/thrift/src/thrift/lib/cpp2/transport/rocket/compression Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ CompressionAlgorithmSelector::toCodecTypeAndLevel(
184
184
case CompressionAlgorithm::ZLIB_LESS:
185
185
return {
186
186
folly::io::CodecType::ZLIB,
187
- folly::io ::COMPRESSION_LEVEL_FASTEST};
187
+ folly::compression ::COMPRESSION_LEVEL_FASTEST};
188
188
case CompressionAlgorithm::ZSTD_LESS:
189
189
// ZSTD is special in that it also uses negative (faster) levels. Due to
190
190
// implementation details, folly segmented these negative ZSTD levels into
@@ -198,7 +198,7 @@ CompressionAlgorithmSelector::toCodecTypeAndLevel(
198
198
case CompressionAlgorithm::LZ4_LESS:
199
199
return {
200
200
folly::io::CodecType::LZ4_VARINT_SIZE,
201
- folly::io ::COMPRESSION_LEVEL_FASTEST};
201
+ folly::compression ::COMPRESSION_LEVEL_FASTEST};
202
202
203
203
case CompressionAlgorithm::ZLIB_MORE:
204
204
return {
You can’t perform that action at this time.
0 commit comments