[INFORMATION]
A pointer/reference to a constant void type was declared
const void *cvp; // warning (pointer to constant void)
void *const vpc; // no warning (constant pointer)
A pointer to a constant type is a different thing than a constant pointer.