Displaying 2 results from an estimated 2 matches for "cppstyle".
2014 Oct 13
16
[LLVMdev] RFC: variable names
...for the change are:
1. No other popular C++ coding style uses capitalized variable names. For instance here are other popular C++ conventions that use camelCase:
http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml
http://www.c-xx.com/ccc/ccc.php
http://geosoft.no/development/cppstyle.html
And, of course, the all-lower-case conventions (e.g. C++ ARM) don’t capitalize variable names. In addition, all the common C derived languages don’t use capitalized variable names (e.g. Java, C#, Objective-C).
2. Ambiguity. Capitalizing type names is common across most C++ conventions. B...
2014 Oct 13
5
[LLVMdev] RFC: variable names
...gt; For instance here are other popular C++ conventions that use camelCase:
>>
>> http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml
>>
>
This does not use camelCase for variable names.
http://www.c-xx.com/ccc/ccc.php
>> http://geosoft.no/development/cppstyle.html
>>
>> And, of course, the all-lower-case conventions (e.g. C++ ARM) don’t
>> capitalize variable names. In addition, all the common C derived languages
>> don’t use capitalized variable names (e.g. Java, C#, Objective-C).
>>
>
Some or all of those other conven...