Displaying 2 results from an estimated 2 matches for "big_scary_macro".
Did you mean:
big_scary_macros
2014 Oct 13
5
[LLVMdev] RFC: variable 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 case the
underscore isn't a word separator, it's a namespace separator.) We have a
few people here who are used to such a style (since it's what the Google
style guide and derivatives uses); any useful feedback f...
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