john-wallace-apps

Results 2 issues of john-wallace-apps

In the generated FlatbuffersMemoryReader, the code reads: ``` deinit { if let originalBuffer = originalBuffer, let pointer = originalBuffer.baseAddress { pointer.deinitialize(count: count) } } ``` Instead it should be: ```...

I was building a lot of large flat buffer files and was seeing a leak. Tracked it down to the FlatBuffersBuilder. The following should be added to the generator for...