We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3292374 commit c09dfa0Copy full SHA for c09dfa0
src/core/codestream/ojph_codeblock_fun.cpp
@@ -217,7 +217,7 @@ namespace ojph {
217
}
218
encode_cb32 = ojph_encode_codeblock_avx2;
219
bool result = initialize_block_encoder_tables_avx2();
220
- assert(result);
+ assert(result); ojph_unused(result);
221
222
find_max_val64 = avx2_find_max_val64;
223
if (reversible) {
@@ -236,7 +236,7 @@ namespace ojph {
236
if (get_cpu_ext_level() >= X86_CPU_EXT_LEVEL_AVX512) {
237
encode_cb32 = ojph_encode_codeblock_avx512;
238
bool result = initialize_block_encoder_tables_avx512();
239
240
241
#endif // !OJPH_DISABLE_AVX512
242
0 commit comments