C

Dryverl version 0.1.3 is out

I have published a new version of Dryverl, version 0.1.3. This is a minor release, that corrects two bugs.

Dryverl supports <dev-c-local-variable/> elements to declare local variables in the generated C code. The first bug was that Dryverl allows such an element to be empty, which would mean that the generated C local variable declaration has no specific initial value. However, in that case, Dryverl generated invalid declarations, such as:

int some_var = ();

Dryverl 0.1.3 now correctly generates no initializer in such cases:

Syndicate content