Skip to content

Commit

Permalink
Revert "Fix boolean operator."
Browse files Browse the repository at this point in the history
This reverts commit fffdb62.
  • Loading branch information
johncbowman committed Jan 17, 2024
1 parent 272274b commit 8652763
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion env.h
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class protoenv {
bool add(symbol src, symbol dest,
protoenv &source, varEntry *qualifier, coder &c)
{
return te.add(src, dest, source.te, qualifier, c) ||
return te.add(src, dest, source.te, qualifier, c) |
ve.add(src, dest, source.ve, qualifier, c);
}

Expand Down

0 comments on commit 8652763

Please sign in to comment.