I get the following error in a pike module I'm writing:
Warning: Optimizer failure in replace().
The code that fails is:
v = replace(v, ({"," "+", """, "\", "<", ">", ";"}), ({"\,", "\+", "\"", "\\", "\<", "\>", "\;"}) );
It also seems to throw an error when I try to perform the replace. Any ideas ( or am i blind to a typo )?
Bill