Skip to content

Commit 7ce2694

Browse files
jensmaurertkoeppe
authored andcommitted
[basic.types.general] Fix comment in example
1 parent 2a23be9 commit 7ce2694

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/basic.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4628,7 +4628,7 @@
46284628
X x;
46294629
void bar() {
46304630
xp = &x; // OK; type is ``pointer to \tcode{X}''
4631-
arrp = &arr; // error: different types
4631+
arrp = &arr; // OK; qualification conversion\iref{conv.qual}
46324632
xp++; // OK: \tcode{X} is complete
46334633
arrp++; // error: \tcode{UNKA} can't be completed
46344634
}

0 commit comments

Comments
 (0)