In C++, what guarantees are there, if any, for two types T1 and T2 so that
sizeof(T1*) == sizeof(T2*)
will always be true? It's not guaranteed, for example, that char* and int* will be the same size on all systems.
In C++, what guarantees are there, if any, for two types T1 and T2 so that
sizeof(T1*) == sizeof(T2*)
will always be true? It's not guaranteed, for example, that char* and int* will be the same size on all systems.