I am trying to get the vtable pointer as a constant (!). I've found auto vptr = typeid(A).vtbl.ptrgets me the pointer, but because TypeInfo is not immutable (another forum thread), this will read the pointer from memory instead of loading a direct value.
Does anybody know how to get the class's vtable pointer without doing a memory read?
Thanks! Johan