Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pointer subtraction of differently-qualified pointers should not error #833

Closed
ehaas opened this issue Jan 8, 2025 · 0 comments · Fixed by #834
Closed

Pointer subtraction of differently-qualified pointers should not error #833

ehaas opened this issue Jan 8, 2025 · 0 comments · Fixed by #834
Labels
bug Something isn't working

Comments

@ehaas
Copy link
Collaborator

ehaas commented Jan 8, 2025

The following errors with error: incompatible pointer types ('const char *' and 'char *')

#include <stddef.h>
ptrdiff_t foo(void) {
  char c[2] = {0, 0};
  const char *p  = &c[1];
  return p - &c[0];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant