I would say the opposite to litb is higher if you use precompiled headers. If you use "stdafx.h" as your precompiled header and have this code:
#include "afile.h" #include "stdafx.h"
then you will spend age trying to understand why "afile.h" does not turn on. When using precompiled headers, all included and #defines are ignored until "stdafx.h". Thus, if you force "stdafx.h" to work, the above will never happen, and you will get a project that effectively uses the precompiled option.
As with the vivid commentary on searching for macros, a good IDE usually has the ability to go on to define a character, be it #define, function, class, etc.
Skizz
source share