Skip to content

Commit 448a545

Browse files
committed
Merge pull request #16793 from anton-potapov:kw_fixes_bitwise_op_on_bools
2 parents 4cebef9 + 3ba6b41 commit 448a545

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

modules/gapi/src/executor/gstreamingexecutor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@ void cv::gimpl::GStreamingExecutor::setSource(GRunArgs &&ins)
737737
for (auto& op : m_ops)
738738
{
739739
op.isl_exec = m_gim.metadata(op.nh).get<IslandExec>().object;
740-
is_reshapable &= op.isl_exec->canReshape();
740+
is_reshapable = is_reshapable && op.isl_exec->canReshape();
741741
}
742742
update_int_metas(); // (7)
743743
m_reshapable = util::make_optional(is_reshapable);

0 commit comments

Comments
 (0)