Commit da65a3d8 authored by Ondrej Zajicek (work)'s avatar Ondrej Zajicek (work)
Browse files

Filter: Fix missing case for !~ operator

Thanks to Vincent Bernat for the patch.
parent f6e6c3b5
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1559,6 +1559,7 @@ i_same(struct f_inst *f1, struct f_inst *f2)
  case P('<','='): TWOARGS; break;

  case '!': ONEARG; break;
  case P('!', '~'):
  case '~': TWOARGS; break;
  case P('d','e'): ONEARG; break;