wc-duck / datalibrary

Open Source Data Library for data serialization.
Other
42 stars 8 forks source link

Added allocator to dl_util functions. #92

Closed lundmark closed 6 years ago

lundmark commented 6 years ago

The dl_util functions were changed to use the internal allocator. The should not be using the internal allocator since that one is dedicated to be used to the type library. Unfortunately there are conditions as to when the allocations are actually done, so we can't use one temp for the file allocations and one for the instance allocations, since they are sometimes the same. This is to solve issue #90.