Is there anyway to determine if a pointer-to-const points to a const object?
ie
bool is_const_object(const int* p) { return ???; } int main() {