| Issue 213: | Neko Patches | |
| 2 people starred this issue and may be notified of changes. | Back to list |
The following NekoVM stdlib patches needs to be applied to HxCPP as well : - https://code.google.com/p/nekovm/source/detail?r=1913 - https://code.google.com/p/nekovm/source/detail?r=1885 - https://code.google.com/p/nekovm/source/detail?r=1881 - https://code.google.com/p/nekovm/source/detail?r=1877 (stable merge sort is the new Array sort) Best, Nicolas
Dec 12, 2012
Project Member
#1
si...@haxe.org
Dec 12, 2012
1881 was fixed in r609 (source only).
Feb 13, 2013
tm_isdst is always initialized to -1, I think this is right? sys return code - fixed regex - thanks sort - cpp used std::sort, I have changed it to std::stable_sort which make guarantees about order - perhaps at the expense of size? I don't have any benchmarks for this.
Status:
Fixed
Feb 13, 2013
It should be noted that Array.sort is not specified to be stable, we provide a haxe-algorithm for that in https://code.google.com/p/haxe/source/browse/trunk/std/haxe/ds/ArraySort.hx However, unless the stable version has a horrible drawback (which I don't think it has), using a stable native sort by default should be fine. |