From 40cc1d563ada804db9686ccefd4f93a0fcc75a8f Mon Sep 17 00:00:00 2001 From: Yedidya Feldblum Date: Sat, 21 Dec 2024 16:24:26 -0800 Subject: [PATCH] migrate uses of legacy namespace folly::io::zlib (#10283) Summary: Migrate uses of legacy namespace `folly::io::zlib` to `folly::compression::zlib`. Reviewed By: michalgr, pedroerp, skrueger Differential Revision: D58821426 --- velox/dwio/dwrf/test/TestDecompression.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/velox/dwio/dwrf/test/TestDecompression.cpp b/velox/dwio/dwrf/test/TestDecompression.cpp index 37b0166558ff..c2de52a9d7b2 100644 --- a/velox/dwio/dwrf/test/TestDecompression.cpp +++ b/velox/dwio/dwrf/test/TestDecompression.cpp @@ -33,7 +33,7 @@ using namespace facebook::velox::dwio::common; using namespace facebook::velox::dwrf; using namespace facebook::velox::memory; using namespace facebook::velox; -using namespace folly::io; +using namespace folly::compression; const std::string simpleFile(getExampleFilePath("simple-file.binary"));