"const" becomes parameter name
Status: Alpha
Brought to you by:
skieble
As user nebelmann reported in this thread:
https://sourceforge.net/forum/forum.php?thread_id=2760549&forum_id=614710
it may happen that the keyword "const" may be used as parameter name.
That happens when the type ends with const
and a parameter name is not present.
E.g.:
void foo(int* const);