Notes on kencc compiler errors
Error
not a function
What it means?
You're probably missing a typedef. If bool isn't defined, for example, you're probably missing a typedef int bool;.
This usually manifests in header files ☺.
not a function
You're probably missing a typedef. If bool isn't defined, for example, you're probably missing a typedef int bool;.
This usually manifests in header files ☺.