mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2025-12-17 12:44:42 +03:00
Fixes wrong order of type and function name in naming scheme
This commit is contained in:
@@ -17801,7 +17801,7 @@ This is not evil.
|
|||||||
|
|
||||||
##### Example
|
##### Example
|
||||||
|
|
||||||
sqrt double(double x); // return the square root of x; x must be non-negative
|
double sqrt(double x); // return the square root of x; x must be non-negative
|
||||||
|
|
||||||
int length(const char* p); // return the number of characters in a zero-terminated C-style string
|
int length(const char* p); // return the number of characters in a zero-terminated C-style string
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user