In the test configs, there are conditionals such as:
#if 0
*some stuff to include if 0 goes here*
#endif
#if 1
*some stuff to include if 1 goes here*
#endif
So…what is the binary case there? If what is 1 or 0?
In the test configs, there are conditionals such as:
#if 0
*some stuff to include if 0 goes here*
#endif
#if 1
*some stuff to include if 1 goes here*
#endif
So…what is the binary case there? If what is 1 or 0?
I just use it as a way to comment things out. #if 0
→ commented out.
However, the full power of CPP is available if you want to use conditions in your config file(s).