-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Code consisitency/correctness around pointers #96
Comments
There is a huge controversy in the C++ community on this at the moment. This is now called "east const" vs. "const west". At the last big C++ conference (C++Now 2018) supporters of both sides gave out colored armbands to show support for on side or the other. Here is one blog post about this: http://slashslash.info/2018/02/a-foolish-consistency/ Anyway, consistency is good, so either one or the other. |
Looks like "const west" people won: https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#nl26-use-conventional-const-notation. But at least the "east const" people knew exactly which arm to wear the armband on. (the right arm of course) |
@alliecrevier No, those core guidelines were written before this discussion blew up in the last few months and they are not the result of some kind of community consensus. The guidelines were critized in the discussion for using the wrong arguments. So this is still ongoing. |
@joto What do you think about using the C++ Core Guidelines except when we have reason to disagree? As a way of making it easier to share and contribute to code in a consistent way, we can point people to the C++ Core Guidelines but tell them to check the Mapbox C++ Core-tech Guidelines for exceptions. Each project could even have their own set of guideline exceptions. This could be a convenient way to organize our style guide. For instance, if we want to document that we use "east const" it could look something like: NL.26-modified: Use east const notation Reason Example int const y = 9; // recommended, const int
const int x = 7; // not recommended, const int
int const * p = nullptr; // recommended, pointer to const int
const int * p = nullptr; // not recommended, pointer to const int
int * const p = nullptr; // recommended (for both notations), const pointer to int
int const * const p = nullptr; // recommended, const pointer to const int
const int * const p = nullptr; // not recommended, const pointer to const int Note |
Using the C++ Core Guidelines as a base and building on it is a good idea. Most of the Core Guidelines are uncontroversial and really good even if they are somewhat geared towards higher level code (pointer arithmetic is frowned upon for instance which is needed for low-level code). But this disucssion has gone a "little" beyond what this issue was originally about and probably needs to be discussed somewhere else. |
In regards to
vtquery/src/vtquery.cpp
Lines 26 to 29 in 5ffe8d7
@alliecrevier ask:
The text was updated successfully, but these errors were encountered: