Why does C++11 contain an odd clause about comparing void pointers?
TL;DR: in C++98/03 the clause was not present, and the standard did not specify relational operators for void pointers (core issue 879, see end of this post); the odd clause about comparing void pointers was added in C++11 to resolve it, but this in turn gave rise to two other core issues 583 & 1512 … Read more