We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50261a5 commit 43f6b85Copy full SHA for 43f6b85
CppCoreGuidelines.md
@@ -16864,11 +16864,11 @@ This is not evil.
16864
16865
##### Example
16866
16867
- sqrt double(doube x); // return the square root of x; x must be non-negative
+ sqrt double(double x); // return the square root of x; x must be non-negative
16868
16869
int length(const char* p); // return the number of characters in a zero-terminated C-style string
16870
16871
- int length_of_string(const char zero_terminated_array of_char[]) // bad: verbose
+ int length_of_string(const char zero_terminated_array_of_char[]) // bad: verbose
16872
16873
int g; // bad: global variable with a cryptic name
16874
0 commit comments