File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -796,16 +796,16 @@ Inserts an element constructed in place into the vector at a specified position.
796
796
``` cpp
797
797
template <class ... Types>
798
798
iterator emplace(
799
- const_iterator _ Where ,
800
- Types&&... _ Args );
799
+ const_iterator position ,
800
+ Types&&... args );
801
801
```
802
802
803
803
### Parameters
804
804
805
- *_Where *\
805
+ *position *\
806
806
The position in the [vector](../standard-library/vector-class.md) where the first element is inserted.
807
807
808
- *_Args *\
808
+ *args *\
809
809
Constructor arguments. The function infers which constructor overload to invoke based on the arguments provided.
810
810
811
811
### Return Value
@@ -864,12 +864,12 @@ Adds an element constructed in place to the end of the vector.
864
864
865
865
``` cpp
866
866
template <class ... Types>
867
- void emplace_back(Types&&... _ Args );
867
+ void emplace_back(Types&&... args );
868
868
```
869
869
870
870
### Parameters
871
871
872
- *_Args *\
872
+ *args *\
873
873
Constructor arguments. The function infers which constructor overload to invoke based on the arguments provided.
874
874
875
875
### Example
You can’t perform that action at this time.
0 commit comments