I order to exclude a block of code from the model during compiler time, I use preprocessors as:
#ifdef setting1
do something
#endif //setting1
Sometimes I intend to keep a piece of code during compilation but exclude it during run time. Is there a better way than an if
statement for this purpose?