Closed snoopyjc closed 1 year ago
Change errors for use overload ++ / -- to warnings. We would never call them anyway as we replace ++ with += and -- with -=. See examples in Math::BigInt and Math::BigFloat.
++
+=
--
-=
Also - allow the function supplying the overload to be specified as a string.
Implemented in 1.029
Change errors for use overload ++ / -- to warnings. We would never call them anyway as we replace
++
with+=
and--
with-=
. See examples in Math::BigInt and Math::BigFloat.