Join Slack
Communities
Powered by
What does this error mean? I'm just redefining som...
# kotlin-native
m
martmists
05/06/2022, 10:58 PM
What does this error mean? I'm just redefining some
#define
'd functions into actual functions
e
ephemient
05/06/2022, 11:01 PM
probably the preprocessor is replacing the function name in your declaration with the
#define
, which leads to invalid code. you may need to
#undefine
the symbol first or choose a different name
4
Views
Open in Slack
Previous
Next