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
{{ message }}
This repository was archived by the owner on Aug 27, 2021. It is now read-only.
If there is an include under an #ifdef, the file will be included no matter whether the #ifdef is not active or not
e.g.
//#define TEST // <--- commented
ifdef TEST
include "testing.h"
endif
The final code will contain the testing.h, resulting in problematic code.
If there is an include under an #ifdef, the file will be included no matter whether the #ifdef is not active or not
e.g.
//#define TEST // <--- commented
ifdef TEST
include "testing.h"
endif
The final code will contain the testing.h, resulting in problematic code.
V.