Skip to content

Commit

Permalink
renamespace bits of folly/compression/ that are in folly::io
Browse files Browse the repository at this point in the history
Summary:
Renamespace these bits to `folly::compression` from `folly::io`, but leave aliases in place in `folly::io` for now.
Fixes: facebook/folly#700.

Differential Revision: D58819499

fbshipit-source-id: 5270a4bde3c0f6ba55d02e96d8d21070afc8e2fb
  • Loading branch information
yfeldblum authored and facebook-github-bot committed Jun 21, 2024
1 parent a821ba2 commit c1e9e67
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion proxygen/lib/utils/ZstdStreamCompressor.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,12 @@

namespace folly {
class IOBuf;
namespace io {
namespace compression {
class StreamCodec;
}
namespace io {
using folly::compression::StreamCodec;
}
} // namespace folly

namespace proxygen {
Expand Down

0 comments on commit c1e9e67

Please sign in to comment.