From 8699e8d540293d95871ad246cb638c97f545a278 Mon Sep 17 00:00:00 2001 From: Yedidya Feldblum Date: Fri, 21 Jun 2024 10:54:55 -0700 Subject: [PATCH] migrate uses of legacy namespace folly::io::zlib (#10282) Summary: Pull Request resolved: https://github.com/facebookincubator/velox/pull/10282 Migrate uses of legacy namespace `folly::io::zlib` to `folly::compression::zlib`. 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 8d7c9f5b80ab9..296118836f382 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"));