Commit 4722c5d6 by Arnaud Charlet

* g-regpat.adb: (Match): Change a misuse of or to or else

From-SVN: r91887
parent 2fb9c1bb
......@@ -2549,7 +2549,7 @@ package body GNAT.Regpat is
end if;
Scan := Get_Next (Program, Scan);
exit when Scan = 0 or Program (Scan) /= BRANCH;
exit when Scan = 0 or else Program (Scan) /= BRANCH;
end loop;
exit State_Machine;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment