I'm trying to compile a project, but am running into errors. Opening up the IDE, I am getting problems listed for the following:
(.h file)
virtual void CALL destroy() = 0;
(.cpp file)
void CALL destroy()
The IDE is saying there is a syntax error before "destroy", meaning the CALL keyword. There are many instances of CALL in the file, and all are marked as error.
I'm not really a beginner, though it's been awhile since I've programmed heavily in C++.
I'm using Linux, but I'm not sure if this is a Linux-specialized thing or not. What is this keyword?