search for: long_lambda

Displaying 2 results from an estimated 2 matches for "long_lambda".

2014 Oct 13
5
[LLVMdev] RFC: variable names
...ames > collide. > > If we are going to change how we name variables, I very much want them to > not collide with either type names or function names. My suggestion would > be "lower_case" names. > I think this would be bad: function(); lambda(); longFunction(); long_lambda(); ... but possibly not in practice, since function names rarely have only one word. A partial-camel-case, partly-underscores convention sounds strange to me. (I don't find this to be problematic for BIG_SCARY_MACROS and for ABCK_EnumNamespaces because the former are rare and in the latter ca...
2014 Oct 13
16
[LLVMdev] RFC: variable names
I’d like to discuss revising the LLVM coding conventions to change the naming of variables to start with a lowercase letter. This should not be a discussion on the pain of such a transition, or how to get from here to there, but rather, if there is a better place to be. My arguments for the change are: 1. No other popular C++ coding style uses capitalized variable names. For instance here