Skip to content

Commit

Permalink
Fix compile errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
teo-tsirpanis committed Nov 20, 2023
1 parent 12a6a56 commit 0ee17bf
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions tiledb/sm/compressors/test/link_webp_test1.cc
Original file line number Diff line number Diff line change
Expand Up @@ -127,17 +127,12 @@ int main(int argc, const char* argv[]) {
// webp! left here anyway, in case libraries are ever de-dupped.
const int dec_version = WebPGetDecoderVersion();

// webpdemux
const int demux_version = WebPGetDemuxVersion();
// webpmux
const int mux_version = WebPGetMuxVersion();

// webp
// in testing, even when WebP::webp was -not- added as link item, this
// library was still being placed in link_webp_test project.
auto enc_version = WebPGetEncoderVersion();

reference_a_value(dec_version + demux_version + mux_version + enc_version);
reference_a_value(dec_version + enc_version);
}

if (argc == 1) {
Expand Down

0 comments on commit 0ee17bf

Please sign in to comment.