[Solved] bits set by lookup table – Recursive macro [duplicate]

The idea is “recursively defining the problem down to 2-bit values”: 00, 01, 10, 11. They’re not recursive macros, but does represent the technique of recursive decomposition of the problem. The arrangement of macros as a cascade attacks the problem of generating the table of 2^8 values by solving the problem for 2-bits (generating 4 … Read more

[Solved] missing binary operator before token “(“

You misspelled defined: #if definied(_WIN32) || definied(_WIN64) || definied(__WIN32__) #elif definied(__linux) || definied(__linux__) || definied(linux) should be: #if defined(_WIN32) || defined(_WIN64) || defined(__WIN32__) #elif defined(__linux) || defined(__linux__) || defined(linux) solved missing binary operator before token “(”