mirror of
https://github.com/cpp-best-practices/cppbestpractices.git
synced 2025-12-17 11:14:35 +03:00
Typo with Initializer Lists
This commit is contained in:
@@ -96,8 +96,8 @@ auto mos = std::vector<ModelObject>{mo1, mo2};
|
|||||||
```c++
|
```c++
|
||||||
// Don't do this
|
// Don't do this
|
||||||
std::vector<ModelObject> mos;
|
std::vector<ModelObject> mos;
|
||||||
mo.push_back(mo1);
|
mos.push_back(mo1);
|
||||||
mo.push_back(mo2);
|
mos.push_back(mo2);
|
||||||
```
|
```
|
||||||
|
|
||||||
Initializer lists are significantly more efficient; reducing object copies and resizing of containers
|
Initializer lists are significantly more efficient; reducing object copies and resizing of containers
|
||||||
|
|||||||
Reference in New Issue
Block a user