memononen / nanosvg

Simple stupid SVG parser
zlib License
1.69k stars 357 forks source link

Made the nanosvgrast example compatible with c++ using gcc #171

Open gunterkoenigsmann opened 4 years ago

gunterkoenigsmann commented 4 years ago

If compiling C++ the gcc complains if the result of malloc (which returns void *) is assigned to a pointer of a different type without casting. The example that comes with the comments in nanosvgrast.h did this and therefore could cause the compiler to complain => Added an explicit cast which makes the example work without any error/warning.