Skip to content

Commit

Permalink
fixing merge
Browse files Browse the repository at this point in the history
  • Loading branch information
shrshi committed Nov 19, 2024
1 parent 6d7d436 commit c39b9f1
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions cpp/src/io/comp/uncomp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -297,17 +297,6 @@ size_t decompress_gzip(host_span<uint8_t const> src, host_span<uint8_t> dst)
return decompress_zlib({gz.comp_data, gz.comp_len}, dst);
}

/**
* @brief GZIP host decompressor (includes header)
*/
size_t decompress_zip(host_span<uint8_t const> src, host_span<uint8_t> dst)
{
gz_archive_s gz;
auto const parse_succeeded = ParseGZArchive(&gz, src.data(), src.size());
CUDF_EXPECTS(parse_succeeded, "Failed to parse GZIP header");
return decompress_zlib({gz.comp_data, gz.comp_len}, dst);
}

/**
* @brief SNAPPY host decompressor
*/
Expand Down

0 comments on commit c39b9f1

Please sign in to comment.