Is it possible to have different code styles for headers and source files?
已回答
Our coding standard has different rules regarding function parameters for declarations (generally in .h) and definitions (generally in .c). Is it possible to configure CLion to handle this automatically?
Basically, the required styles are this, for headers:
void get_version(
uint8_t *major,
uint8_t *minor);
vs. this, for source files:
void get_version(uint8_t *major,
uint8_t *minor);
请先登录再写评论。
Hello!
Unfortunately, there is no option to do that. Sorry for the inconvenience.