Hi
I have a simple macro which I use when I want to disable part of my code
Code:
#define OBSOLETE_CODE(x)
But using this macro when you want to make many lines obsolete in not good
and looks like
OBSOLETE_CODE(
// 100 lines of code
)

I want to have two macro's BEGIN_OBSOLETE and END_OBSOLETE like below
Code:
BEGIN_OBSOLETE
// 100 lines of code
END_OBSOLETE
How should i achieve this as the following commands DO NOT work
Code:
#define BEGIN_OBSOLETE OBSOLETE_CODE(
#define END_OBSOLETE )
Thanks