Option 'pad-include' has opposite effect on #include with pre-processor macro/identifier
When using option --pad-include
in AStyle 3.6.6, the space after #include will be removed in this example:
Before formatting:
#ifdef USER_INCLUDE
#include USER_INCLUDE
#endif
After formatting:
#ifdef USER_INCLUDE
#includeUSER_INCLUDE
#endif