mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-12-12 06:35:19 -05:00
Added automatic rewrite to remove const qualifiers occurring before a star.
This commit is contained in:
parent
49f0dc1f04
commit
0a31349be3
1 changed files with 2 additions and 1 deletions
|
|
@ -37,7 +37,8 @@ rewrite "__attribute__(([_a-z]*))" ""
|
|||
rewrite "__attribute__( ( [_a-z]* ) )" ""
|
||||
|
||||
echo "Removing const qualifiers from pointers"
|
||||
rewrite "* const" "*"
|
||||
rewrite "[*] const" "*"
|
||||
rewrite "const [*]" "*"
|
||||
|
||||
echo "Uncomment special includes to allow VeriFast proofs to refer to config macros"
|
||||
rewrite "//VF_include #include" "#include"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue