Fix assertion settin join type is PBlock statements.
This commit is contained in:
parent
6a57764e0e
commit
47ddf5220c
|
|
@ -117,7 +117,7 @@ PBlock::~PBlock()
|
|||
void PBlock::set_join_type(PBlock::BL_TYPE type)
|
||||
{
|
||||
assert(bl_type_ == BL_PAR);
|
||||
assert(type == BL_JOIN_NONE || type==BL_JOIN_ANY);
|
||||
assert(type==BL_PAR || type==BL_JOIN_NONE || type==BL_JOIN_ANY);
|
||||
bl_type_ = type;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue