pike.git
/
CHANGES
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/CHANGES:78:
o Fixed multiple integer over- and underflow bugs. o Extended sscanf %O sscanf() is now able to parse all base types that sprintf %O can output. It can now also parse most literal constants pike accepts, including integers prefixed with 0x and 0b, and floating point numbers in scientific notation.
+
o Returning void
-
+
It is now possible to return void responses from void functions.
+
+
void a() { return; }
+
void b() { return a(); }
+
+
Bug fixes --------- o Operator functions Calling operator functions with more than two arguments will now work correctly for objects, where previously only the first two objects where added. When adding arrays, multisets and mappings, UNDEFINED will now