Skip to content

Commit 09197e4

Browse files
authored
[Docs] Fix typo: missing closing parenthesis in __attribute__ (#172148)
1 parent 0b64dc9 commit 09197e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/include/clang/Basic/AttrDocs.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4140,7 +4140,7 @@ of 2.
41404140
.. code-block:: c
41414141

41424142
typedef double * aligned_double_ptr __attribute__((align_value(64)));
4143-
void foo(double & x __attribute__((align_value(128)),
4143+
void foo(double & x __attribute__((align_value(128))),
41444144
aligned_double_ptr y) { ... }
41454145

41464146
If the pointer value does not have the specified alignment at runtime, the

0 commit comments

Comments
 (0)