Skip to content

Commit 4f8a31c

Browse files
committed
clang format
1 parent 5b5e240 commit 4f8a31c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tests/unit/pointer_add_assign.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ int main() {
88
p += static_cast<uint8_t>(1);
99
assert(*p == 2);
1010
}
11-
11+
1212
{
1313
char *p = &arr[0];
1414
p += static_cast<int8_t>(1);
@@ -20,7 +20,7 @@ int main() {
2020
p += static_cast<uint16_t>(1);
2121
assert(*p == 2);
2222
}
23-
23+
2424
{
2525
char *p = &arr[0];
2626
p += static_cast<int16_t>(1);
@@ -32,7 +32,7 @@ int main() {
3232
p += static_cast<uint32_t>(1);
3333
assert(*p == 2);
3434
}
35-
35+
3636
{
3737
char *p = &arr[0];
3838
p += static_cast<int32_t>(1);
@@ -44,7 +44,7 @@ int main() {
4444
p += static_cast<uint64_t>(1);
4545
assert(*p == 2);
4646
}
47-
47+
4848
{
4949
char *p = &arr[0];
5050
p += static_cast<int64_t>(1);

0 commit comments

Comments
 (0)