C++ Naming Conventions: const references as paramteres

I have a the following rules setup:

 

The problem is when I have a function that takes a constant reference.  CLion says the name should be camelCase when I want PascalCase. 

 

Example:

I want: void foo( const std::string &Name ) but CLion wants void foo( const std::string &name ).  This seems to work fine for pointers that are being passed in.

Is there a setting I'm missing somewhere?

 

Thanks

0

请先登录再写评论。