We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b5e240 commit 4f8a31cCopy full SHA for 4f8a31c
1 file changed
tests/unit/pointer_add_assign.cpp
@@ -8,7 +8,7 @@ int main() {
8
p += static_cast<uint8_t>(1);
9
assert(*p == 2);
10
}
11
-
+
12
{
13
char *p = &arr[0];
14
p += static_cast<int8_t>(1);
@@ -20,7 +20,7 @@ int main() {
20
p += static_cast<uint16_t>(1);
21
22
23
24
25
26
p += static_cast<int16_t>(1);
@@ -32,7 +32,7 @@ int main() {
32
p += static_cast<uint32_t>(1);
33
34
35
36
37
38
p += static_cast<int32_t>(1);
@@ -44,7 +44,7 @@ int main() {
44
p += static_cast<uint64_t>(1);
45
46
47
48
49
50
p += static_cast<int64_t>(1);
0 commit comments