tgockel / json-voorhees

A killer modern C++ library for interacting with JSON.
http://tgockel.github.io/json-voorhees/
Apache License 2.0
128 stars 18 forks source link

Remove use of variable-length array in character conversion code. #132

Closed tgockel closed 5 years ago

tgockel commented 5 years ago

Use alloca on platforms where it is available and fall back to heap allocation with std::unique_ptr for other cases.

Fixes issue #127.