Sander Mertens
Sander Mertens
This should be addressed as suggested, by returning a pointer to the old value.
Example definition of units using a `quantity` and a `unit` class: ```c quantity length{} unit meter: length, "m" unit mile: length, "mi", "% * 1609.344" :: unit geographical: length, "mi",...
At this point Windows support is in very early stages. I don't expect we will have this finished until the beginning of next year- unless one of our users has...
There are two main pending tasks for Windows support: 1. Translate non-standard C POSIX functions to the Windows API (threads, mutex locking etc). 2. Translate the buildsystem commands to Windows...
Code generators also do not properly handle the `ref_i32` type. The C type code generator generates the following code: ```c typedef int32_t test_i32_ref; ``` This should be: ```c typedef int32_t...
Type size calculation is wrong too. The primitive type size is used, not the size of a reference (`sizeof(corto_object)`).
The security API and testcases are place. A few features need to be added before this issue can be closed: - Allow logging in with a key (vs just username...
The buildsystem design will be changed after `mixin` support is added to the typesystem (#590). Mixins will allow dynamically adding fields to an object after it has been defined. This...
To support lazy references for members, collection elements, function parameters and function return values, a single mechanism is required to indicate whether a reference is lazy or not. Whereas this...
The unifying element in the three approaches is the iterator. A replicator interface that can provide a `corto_iter` object could address all three usecases. Since an iterator is essentially just...