updates templates

This commit is contained in:
2024-12-28 13:07:07 +01:00
parent be0f783af8
commit 9a2df32d57
5 changed files with 23 additions and 24 deletions

View File

@ -199,9 +199,6 @@ template <typename CODE_WORD> void debug_fn(CODE_WORD insn) {
volatile CODE_WORD x = insn;
insn = 2 * x;
}
template <typename ARCH> vm_impl<ARCH>::vm_impl() { this(new ARCH()); }
// according to
// https://stackoverflow.com/questions/8871204/count-number-of-1s-in-binary-representation
#ifdef __GCC__