Hello, I'm trying to come up with a way to have an #if USING(SOME_PREPROCESSOR),
SOME_PREPROCESSOR would be either defined as 0, or 1, but the main goal is that I want the statement to be a compile-time error if SOME_PREPROCESSOR isn't defined at all, the #if USING would also need to check the value, which would either be the 0 or 1.
I've tried a few things like the below, but can't seem to get it to work.
Thanks!
#define USING(X) (X && X)