Skip to content

Commit

Permalink
Fix gcc8 build
Browse files Browse the repository at this point in the history
  • Loading branch information
eustas committed Dec 27, 2024
1 parent ac19b28 commit a35bf04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/extras/codec_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ size_t GetPrecision(JxlDataType data_type) {
case JXL_TYPE_FLOAT16:
return 11;
default:
jxl::test::Check(false);
return jxl::test::Check(false), 8;
}
}

Expand All @@ -83,7 +83,7 @@ size_t GetDataBits(JxlDataType data_type) {
case JXL_TYPE_FLOAT16:
return 16;
default:
jxl::test::Check(false);
return jxl::test::Check(false), 8;
}
}

Expand Down

0 comments on commit a35bf04

Please sign in to comment.