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
I ran into problems using FLEXT_USE_CMEM, it result in a call-loop:
void *operator new(size_t bytes) in flsupport.cpp calls flext_root::operator new(bytes);
which is inlined with: ::operator new(bytes); defined in flsupport.h
which calls the global new operator again.
Not sure what the idea was about FLEXT_USE_CMEM, but this seems wrong.
It looks like neither the global new operator nor the inline new-operator is necessary?
The text was updated successfully, but these errors were encountered:
Hello.
I ran into problems using FLEXT_USE_CMEM, it result in a call-loop:
void *operator new(size_t bytes)
in flsupport.cpp callsflext_root::operator new(bytes);
which is inlined with:
::operator new(bytes);
defined in flsupport.hwhich calls the global new operator again.
Not sure what the idea was about FLEXT_USE_CMEM, but this seems wrong.
It looks like neither the global new operator nor the inline new-operator is necessary?
The text was updated successfully, but these errors were encountered: