Note: Preprocessor operators like #include(Libraries) name

Avoiding error:
Defining libraries (Preprocessor operators) and Named Operators(if, else, and, or…) cannot be inside the TEXT macro, see bellow:

#include “BullCowCartridge.h” (True and it works)
#include TEXT(“BullCowCartridge.h”) (FALSE and throws error)

Reference: whats macro in c++

Privacy & Terms