What\'s the C++ equivalent of #region for C++ so I can put in custom code collapsible bits and make my code a little easier to read?
I've been using
#ifndef ANY_NAME_FOR_THIS_REGION ... #endif
for several projects during the last couple of years and that suits me (including collapsible blocks). as an addition, i can disable the block using #define ANY_NAME_FOR_THIS_REGION just above it.