Great code! To use it with g++-12 I have to use a define switch as g++ does not have __forceinline, I did it like this: ``` #ifndef __forceinline #def __forceinline __attribute__((always_inline)) #endif ```
Great code!
To use it with g++-12 I have to use a define switch as g++ does not have __forceinline, I did it like this: