Once reading v8.h in V8 engine code, I could find the following macro.
#define TYPE_CHECK(T, S) \
while (false) { \
*(static_cast<T* volatile*>(0)) = static_cast<S*>(0); \
}
I know that this is to check the type S is compatible with the type T. In the statement, how can the execution flow enter the while loop? while(false) means that condition is always false. Thus, the statement in while loop will never be executed.
As a result, the macro is not always usable, is it?
#define false true– quasiverse Sep 3 '11 at 7:19