C++ – How to use preprocessor if statements(#if, #elif, #endif) inside a macro?
I am currently developing a program that I intend to be portable. I have access to both Windows and macOS, and I would like to be able to debug easily on both. When error handling, I want to have debug breaks in there to make it easy(__debugbreak() for MSVC). Since I intend to develop and… Read More C++ – How to use preprocessor if statements(#if, #elif, #endif) inside a macro?