mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2024-03-22 13:30:58 +08:00
Capitalization error
This commit is contained in:
parent
b3d2f853f7
commit
b21b125d42
@ -1,6 +1,6 @@
|
|||||||
# <a name="main"></a>C++ Core Guidelines
|
# <a name="main"></a>C++ Core Guidelines
|
||||||
|
|
||||||
March 26, 2018
|
April 16, 2018
|
||||||
|
|
||||||
|
|
||||||
Editors:
|
Editors:
|
||||||
@ -17534,8 +17534,8 @@ Templating a class hierarchy that has many functions, especially many virtual fu
|
|||||||
// ...
|
// ...
|
||||||
};
|
};
|
||||||
|
|
||||||
vector<int> vi;
|
Vector<int> vi;
|
||||||
vector<string> vs;
|
Vector<string> vs;
|
||||||
|
|
||||||
It is probably a dumb idea to define a `sort` as a member function of a container, but it is not unheard of and it makes a good example of what not to do.
|
It is probably a dumb idea to define a `sort` as a member function of a container, but it is not unheard of and it makes a good example of what not to do.
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user