Quick Cish question.
Is there a preprocessor directive to tell the compiler to perform an initial parse to create tokens for functions & other declarations (classes etc), so they can be decalared / called without needing to be in use order?
eg:
Is there a preprocessor directive to tell the compiler to perform an initial parse to create tokens for functions & other declarations (classes etc), so they can be decalared / called without needing to be in use order?
eg:
void funcitionA(){ functionB(); } void funcitionB(){ does something; }