6 ms·
Thanks! malloc() we only optimized for char* so far (there are endless possible optimizations when translating C the way we do). "(double* )malloc(sizeof(doub
by marco2357 11y ago
Thanks!
malloc() we only optimized for char* so far (there are endless possible optimizations when translating C the way we do).
"(double* )malloc(sizeof(double) * 100)" should be translated as "new DoubleContainer(100, true)". We'll add that add some point.