You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Also, a note to myself and other NCL developers for future reference - I think it might be preferable to avoid using platform-dependent #ifdefs inside these source files and instead replace any alloca calls with malloc/free as needed to ensure portability.
From my comment on PR #119
As of #119 being merged, we now have
#ifdef __FreeBSD__
in the filesI think it may be worth removing
#include <alloca.h>
from those files and then replacingalloca
withmalloc
/free
inin order to avoid using a platform-specific
#ifdef
.The text was updated successfully, but these errors were encountered: