Morten MacFly
-
2015-02-07
- Type: --> Undefined
Hello,
When writing :
void database_create_index ( Database_Info * k )
{
printf ( "%s %s tg\n", k->table, k->column);
}
auto-completion works fine and show the structure members.
But when adding the restrict keyword, it will not work anymore.
void database_create_index ( Database_Info * restrict k )
{
printf ( "%s %s tg\n", k->, k->);
}
since restrict is in the c99 a c11 standards, it would be fine if CB could take them into account for the autocompletion.
Thanks