From a502a9484505a3778a9840dfd234ac6866c138e5 Mon Sep 17 00:00:00 2001 From: Yedidya Feldblum Date: Wed, 29 Jan 2025 11:32:45 -0800 Subject: [PATCH] migrate uses of legacy alias folly::io::getCodec in hphp/ Reviewed By: Orvid Differential Revision: D68642735 fbshipit-source-id: 6dcfb3144658990a8a36ac988b373ca1e145d00f --- hphp/util/test/zstd-test.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hphp/util/test/zstd-test.cpp b/hphp/util/test/zstd-test.cpp index 691d9264ffc5f1..e40da7ffbc05a8 100644 --- a/hphp/util/test/zstd-test.cpp +++ b/hphp/util/test/zstd-test.cpp @@ -97,7 +97,7 @@ TEST(ZstdTest, Chunks) { } TEST(ZstdTest, ContextReuseSingleShot) { - auto codec = folly::io::getCodec(folly::io::CodecType::ZSTD); + auto codec = folly::compression::getCodec(folly::io::CodecType::ZSTD); size_t len1; size_t len2; @@ -138,7 +138,7 @@ TEST(ZstdTest, ContextReuseSingleShot) { } TEST(ZstdTest, ContextReuseStreamed) { - auto codec = folly::io::getCodec(folly::io::CodecType::ZSTD); + auto codec = folly::compression::getCodec(folly::io::CodecType::ZSTD); size_t full_len1; size_t full_len2; @@ -197,7 +197,7 @@ TEST(ZstdTest, ContextReuseStreamed) { } TEST(ZstdTest, Checksumming) { - auto codec = folly::io::getCodec(folly::io::CodecType::ZSTD); + auto codec = folly::compression::getCodec(folly::io::CodecType::ZSTD); size_t len1; size_t len2; @@ -237,7 +237,7 @@ TEST(ZstdTest, Checksumming) { } TEST(ZstdTest, Superblock) { - auto codec = folly::io::getCodec(folly::io::CodecType::ZSTD); + auto codec = folly::compression::getCodec(folly::io::CodecType::ZSTD); size_t len1; size_t len2;