Skip to content

Commit

Permalink
common: use bool literal
Browse files Browse the repository at this point in the history
  • Loading branch information
atkassen committed Feb 11, 2025
1 parent 6ed8ad5 commit 4b6f34c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/primitive_attr_quant.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ struct zero_points_t : public c_compatible {
case DNNL_ARG_SRC: arg_is_set = is_set_src; break;
case DNNL_ARG_WEIGHTS: arg_is_set = is_set_wei; break;
case DNNL_ARG_DST: arg_is_set = is_set_dst; break;
default: arg_is_set = 0;
default: arg_is_set = false;
}
return arg_is_set;
}
Expand Down

0 comments on commit 4b6f34c

Please sign in to comment.