visual studio - Resharper C++ enforce C99 -


i writing embedded application in plain c99 in visual studio visualgdb , resharper c++. resharper website states supports c99.

but if have typedef struct this

typedef struct { int bar;} foo_t; 

and function return struct

foo_t foo(void){    return (foo_t){.bar = 0;}; } 

resharper confused (unreachable code, missing semicolon etc.). there way turn on c99 standard in resharper or not support type of returns?

we sorry inconvenience. i've created issue in youtrack it: https://youtrack.jetbrains.com/issue/rscpp-15938 can follow request , vote it.


Comments

Popular posts from this blog

authentication - Mongodb revoke acccess to connect test database -

r - Update two sets of radiobuttons reactively - shiny -

ios - Realm over CoreData should I use NSFetchedResultController or a Dictionary? -