Skip to content

Commit 3d118ba

Browse files
authored
Remove trailing comma in function prototypes
1 parent 80006f7 commit 3d118ba

File tree

14 files changed

+48
-57
lines changed

14 files changed

+48
-57
lines changed

docs/atl-mfc-shared/reference/cstringt-class.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -998,11 +998,11 @@ Concatenates two strings or a character and a string.
998998
```cpp
999999
friend CStringT operator+(const CStringT& str1, const CStringT& str2);
10001000
friend CStringT operator+(const CStringT& str1, PCXSTR psz2);
1001-
friend CStringT operator+(PCXSTR psz1, const CStringT& str2,);
1002-
friend CStringT operator+(char ch1, const CStringT& str2,);
1001+
friend CStringT operator+(PCXSTR psz1, const CStringT& str2);
1002+
friend CStringT operator+(char ch1, const CStringT& str2);
10031003
friend CStringT operator+(const CStringT& str1, char ch2);
10041004
friend CStringT operator+(const CStringT& str1, wchar_t ch2);
1005-
friend CStringT operator+(wchar_t ch1, const CStringT& str2,);
1005+
friend CStringT operator+(wchar_t ch1, const CStringT& str2);
10061006
```
10071007

10081008
### Parameters
@@ -1102,8 +1102,8 @@ friend bool operator==(const CStringT& str1, PCXSTR psz2) throw();
11021102
friend bool operator==(const CStringT& str1, PCYSTR psz2) throw();
11031103
friend bool operator==(const CStringT& str1, XCHAR ch2) throw();
11041104
friend bool operator==(PCXSTR psz1, const CStringT& str2) throw();
1105-
friend bool operator==(PCYSTR psz1, const CStringT& str2,) throw();
1106-
friend bool operator==(XCHAR ch1, const CStringT& str2,) throw();
1105+
friend bool operator==(PCYSTR psz1, const CStringT& str2) throw();
1106+
friend bool operator==(XCHAR ch1, const CStringT& str2) throw();
11071107
```
11081108

11091109
### Parameters
@@ -1144,8 +1144,8 @@ friend bool operator!=(const CStringT& str1, PCXSTR psz2) throw();
11441144
friend bool operator!=(const CStringT& str1, PCYSTR psz2) throw();
11451145
friend bool operator!=(const CStringT& str1, XCHAR ch2) throw();
11461146
friend bool operator!=(PCXSTR psz1, const CStringT& str2) throw();
1147-
friend bool operator!=(PCYSTR psz1, const CStringT& str2,) throw();
1148-
friend bool operator!=(XCHAR ch1, const CStringT& str2,) throw();
1147+
friend bool operator!=(PCYSTR psz1, const CStringT& str2) throw();
1148+
friend bool operator!=(XCHAR ch1, const CStringT& str2) throw();
11491149
```
11501150

11511151
### Parameters

docs/atl/reference/cstockpropimpl-class.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
2-
description: "Learn more about: CStockPropImpl Class"
32
title: "CStockPropImpl Class"
3+
description: "Learn more about: CStockPropImpl Class"
44
ms.date: "05/06/2019"
55
f1_keywords: ["CStockPropImpl", "ATLCTL/ATL::CStockPropImpl", "ATLCTL/ATL::get_Appearance", "ATLCTL/ATL::get_AutoSize", "ATLCTL/ATL::get_BackColor", "ATLCTL/ATL::get_BackStyle", "ATLCTL/ATL::get_BorderColor", "ATLCTL/ATL::get_BorderStyle", "ATLCTL/ATL::get_BorderVisible", "ATLCTL/ATL::get_BorderWidth", "ATLCTL/ATL::get_Caption", "ATLCTL/ATL::get_DrawMode", "ATLCTL/ATL::get_DrawStyle", "ATLCTL/ATL::get_DrawWidth", "ATLCTL/ATL::get_Enabled", "ATLCTL/ATL::get_FillColor", "ATLCTL/ATL::get_FillStyle", "ATLCTL/ATL::get_Font", "ATLCTL/ATL::get_ForeColor", "ATLCTL/ATL::get_HWND", "ATLCTL/ATL::get_MouseIcon", "ATLCTL/ATL::get_MousePointer", "ATLCTL/ATL::get_Picture", "ATLCTL/ATL::get_ReadyState", "ATLCTL/ATL::get_TabStop", "ATLCTL/ATL::get_Text", "ATLCTL/ATL::getvalid", "ATLCTL/ATL::get_Window", "ATLCTL/ATL::put_Appearance", "ATLCTL/ATL::put_AutoSize", "ATLCTL/ATL::put_BackColor", "ATLCTL/ATL::put_BackStyle", "ATLCTL/ATL::put_BorderColor", "ATLCTL/ATL::put_BorderStyle", "ATLCTL/ATL::put_BorderVisible", "ATLCTL/ATL::put_BorderWidth", "ATLCTL/ATL::put_Caption", "ATLCTL/ATL::put_DrawMode", "ATLCTL/ATL::put_DrawStyle", "ATLCTL/ATL::put_DrawWidth", "ATLCTL/ATL::put_Enabled", "ATLCTL/ATL::put_FillColor", "ATLCTL/ATL::put_FillStyle", "ATLCTL/ATL::put_Font", "ATLCTL/ATL::put_ForeColor", "ATLCTL/ATL::put_HWND", "ATLCTL/ATL::put_MouseIcon", "ATLCTL/ATL::put_MousePointer", "ATLCTL/ATL::put_Picture", "ATLCTL/ATL::put_ReadyState", "ATLCTL/ATL::put_TabStop", "ATLCTL/ATL::put_Text", "ATLCTL/ATL::putvalid", "ATLCTL/ATL::put_Window", "ATLCTL/ATL::putref_Font", "ATLCTL/ATL::putref_MouseIcon", "ATLCTL/ATL::putref_Picture"]
66
helpviewer_keywords: ["CStockPropImpl class", "controls [ATL], stock properties", "stock properties, ATL controls"]
7-
ms.assetid: 45f11d7d-6580-4a0e-872d-3bc8b836cfda
87
---
98
# CStockPropImpl Class
109

@@ -607,7 +606,7 @@ Returns S_OK on success, or an error HRESULT on failure.
607606
Call this method to set the value of flag that indicates if the control cannot be any other size.
608607

609608
```
610-
HRESULT STDMETHODCALLTYPE put_AutoSize(VARIANT_BOOL bAutoSize,);
609+
HRESULT STDMETHODCALLTYPE put_AutoSize(VARIANT_BOOL bAutoSize);
611610
```
612611

613612
### Parameters
@@ -1100,5 +1099,5 @@ The same as [CStockPropImpl::put_Picture](#put_picture), but with a reference co
11001099

11011100
## See also
11021101

1103-
[Class Overview](../../atl/atl-class-overview.md)<br/>
1102+
[Class Overview](../../atl/atl-class-overview.md)\
11041103
[IDispatchImpl Class](../../atl/reference/idispatchimpl-class.md)

docs/c-runtime-library/reference/sopen-s-wsopen-s.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
---
2-
description: "Learn more about: _sopen_s, _wsopen_s"
32
title: "_sopen_s, _wsopen_s"
3+
description: "Learn more about: _sopen_s, _wsopen_s"
44
ms.date: 05/18/2022
55
api_name: ["_sopen_s", "_wsopen_s", "_o__sopen_s", "_o__wsopen_s"]
66
api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll", "api-ms-win-crt-stdio-l1-1-0.dll"]
77
api_type: ["DLLExport"]
88
topic_type: ["apiref"]
99
f1_keywords: ["CORECRT_IO/_sopen_s", "CORECRT_WIO/_wsopen_s", "TCHAR/_tsopen_s", "_sopen_s", "_wsopen_s", "_tsopen_s", "sopen_s", "wsopen_s"]
1010
helpviewer_keywords: ["sopen_s function", "_wsopen_s function", "wsopen_s function", "opening files, for sharing", "files [C++], opening", "_sopen_s function", "files [C++], sharing"]
11-
ms.assetid: 059a0084-d08c-4973-9174-55e391b72aa2
1211
---
1312
# `_sopen_s`, `_wsopen_s`
1413

@@ -29,7 +28,7 @@ errno_t _wsopen_s(
2928
const wchar_t *filename,
3029
int oflag,
3130
int shflag,
32-
int pmode,
31+
int pmode
3332
);
3433
```
3534

docs/intrinsics/arm-intrinsics.md

Lines changed: 2 additions & 3 deletions
Large diffs are not rendered by default.

docs/intrinsics/x86-intrinsics-list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1139,7 +1139,7 @@ The following table lists the intrinsics available on x86 processors. The Techno
11391139
| [`_mm256_set1_ps`](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm256_set1_ps) | AVX | immintrin.h | `__m256 _mm256_set1_ps(float);` |
11401140
| [`_mm256_setr_epi16`](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm256_setr_epi16) | AVX | immintrin.h | `(__m256i _mm256_setr_epi16(short, short, short, short, short, short, short, short, short, short, short, short, short, short, short, short);` |
11411141
| [`_mm256_setr_epi32`](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm256_setr_epi32) | AVX | immintrin.h | `__m256i _mm256_setr_epi32(int, int, int, int, int, int, int, int);` |
1142-
| [`_mm256_setr_epi8`](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm256_setr_epi8) | AVX | immintrin.h | `(__m256i _mm256_setr_epi8(char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char,);` |
1142+
| [`_mm256_setr_epi8`](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm256_setr_epi8) | AVX | immintrin.h | `(__m256i _mm256_setr_epi8(char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char, char);` |
11431143
| [`_mm256_setr_pd`](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm256_setr_pd) | AVX | immintrin.h | `__m256d _mm256_setr_pd(double, double, double, double);` |
11441144
| [`_mm256_setr_ps`](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm256_setr_ps) | AVX | immintrin.h | `__m256 _mm256_setr_ps(float, float, float, float, float, float, float, float);` |
11451145
| [`_mm256_setzero_pd`](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm256_setzero_pd) | AVX | immintrin.h | `__m256d _mm256_setzero_pd(void);` |

docs/mfc/reference/cgopherconnection-class.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
2-
description: "Learn more about: CGopherConnection Class"
32
title: "CGopherConnection Class"
3+
description: "Learn more about: CGopherConnection Class"
44
ms.date: "11/04/2016"
55
f1_keywords: ["CGopherConnection", "AFXINET/CGopherConnection", "AFXINET/CGopherConnection::CGopherConnection", "AFXINET/CGopherConnection::CreateLocator", "AFXINET/CGopherConnection::GetAttribute", "AFXINET/CGopherConnection::OpenFile"]
66
helpviewer_keywords: ["CGopherConnection [MFC], CGopherConnection", "CGopherConnection [MFC], CreateLocator", "CGopherConnection [MFC], GetAttribute", "CGopherConnection [MFC], OpenFile"]
7-
ms.assetid: b5b96aea-ac99-430e-bd84-d1372b43f78f
87
---
98
# CGopherConnection Class
109

@@ -167,8 +166,9 @@ Call this member function to retrieve specific attribute information about an it
167166

168167
```
169168
BOOL GetAttribute(
170-
CGopherLocator& refLocator CString strRequestedAttributes,
171-
CString& strResult,);
169+
CGopherLocator& refLocator,
170+
CString strRequestedAttributes,
171+
CString& strResult);
172172
```
173173

174174
### Parameters
@@ -222,11 +222,11 @@ Override the *dwContext* default to set the context identifier to a value of you
222222

223223
## See also
224224

225-
[CInternetConnection Class](../../mfc/reference/cinternetconnection-class.md)<br/>
226-
[Hierarchy Chart](../../mfc/hierarchy-chart.md)<br/>
227-
[CFtpConnection Class](../../mfc/reference/cftpconnection-class.md)<br/>
228-
[CHttpConnection Class](../../mfc/reference/chttpconnection-class.md)<br/>
229-
[CInternetConnection Class](../../mfc/reference/cinternetconnection-class.md)<br/>
230-
[CGopherLocator Class](../../mfc/reference/cgopherlocator-class.md)<br/>
231-
[CGopherFile Class](../../mfc/reference/cgopherfile-class.md)<br/>
225+
[CInternetConnection Class](../../mfc/reference/cinternetconnection-class.md)\
226+
[Hierarchy Chart](../../mfc/hierarchy-chart.md)\
227+
[CFtpConnection Class](../../mfc/reference/cftpconnection-class.md)\
228+
[CHttpConnection Class](../../mfc/reference/chttpconnection-class.md)\
229+
[CInternetConnection Class](../../mfc/reference/cinternetconnection-class.md)\
230+
[CGopherLocator Class](../../mfc/reference/cgopherlocator-class.md)\
231+
[CGopherFile Class](../../mfc/reference/cgopherfile-class.md)\
232232
[CInternetSession Class](../../mfc/reference/cinternetsession-class.md)

docs/mfc/reference/cmfcdynamiclayout-class.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
description: "Learn more about: CMFCDynamicLayout Class"
32
title: "CMFCDynamicLayout Class"
3+
description: "Learn more about: CMFCDynamicLayout Class"
44
ms.date: "08/29/2019"
55
f1_keywords: ["CMFCDynamicLayout", "AFXLAYOUT/CMFCDynamicLayout", "AFXLAYOUT/CMFCDynamicLayout::AddItem", "AFXLAYOUT/CMFCDynamicLayout::Adjust", "AFXLAYOUT/CMFCDynamicLayout::Create", "AFXLAYOUT/CMFCDynamicLayout::GetHostWnd", "AFXLAYOUT/CMFCDynamicLayout::GetMinSize", "AFXLAYOUT/CMFCDynamicLayout::GetWindowRect", "AFXLAYOUT/CMFCDynamicLayout::HasItem", "AFXLAYOUT/CMFCDynamicLayout::IsEmpty", "AFXLAYOUT/CMFCDynamicLayout::LoadResource", "AFXLAYOUT/CMFCDynamicLayout::SetMinSize"]
6-
ms.assetid: c2df2976-f049-47fc-9cf0-abe3e01948bc
76
---
87
# CMFCDynamicLayout Class
98

@@ -170,7 +169,7 @@ The position and size of a child control is changed dynamically when a hosting w
170169
Retrieves the rectangle for the window's current client area.
171170

172171
```cpp
173-
void GetHostWndRect(CRect& rect,);
172+
void GetHostWndRect(CRect& rect);
174173
```
175174
176175
### Parameters
@@ -503,5 +502,5 @@ A [SizeSettings](#sizesettings_structure) value that encapsulates the requested
503502

504503
## See also
505504

506-
[Hierarchy Chart](../../mfc/hierarchy-chart.md)<br/>
505+
[Hierarchy Chart](../../mfc/hierarchy-chart.md)\
507506
[Classes](../../mfc/reference/mfc-classes.md)

docs/standard-library/atomic-functions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
description: "Learn more about: <atomic> functions"
32
title: "<atomic> functions"
3+
description: "Learn more about: <atomic> functions"
44
ms.date: "07/11/2018"
55
f1_keywords: ["atomic/std::atomic_compare_exchange_strong", "atomic/std::atomic_compare_exchange_strong_explicit", "atomic/std::atomic_compare_exchange_weak", "atomic/std::atomic_compare_exchange_weak_explicit", "atomic/std::atomic_exchange", "atomic/std::atomic_exchange_explicit", "atomic/std::atomic_fetch_add", "atomic/std::atomic_fetch_add_explicit", "atomic/std::atomic_fetch_and", "atomic/std::atomic_fetch_and_explicit", "atomic/std::atomic_fetch_or", "atomic/std::atomic_fetch_or_explicit", "atomic/std::atomic_fetch_sub", "atomic/std::atomic_fetch_sub_explicit", "atomic/std::atomic_fetch_xor", "atomic/std::atomic_fetch_xor_explicit", "atomic/std::atomic_flag_clear", "atomic/std::atomic_flag_clear_explicit", "atomic/std::atomic_flag_test_and_set", "atomic/std::atomic_flag_test_and_set_explicit", "atomic/std::atomic_init", "atomic/std::atomic_is_lock_free", "atomic/std::atomic_load", "atomic/std::atomic_load_explicit", "atomic/std::atomic_signal_fence", "atomic/std::atomic_store", "atomic/std::atomic_store_explicit", "atomic/std::atomic_thread_fence", "atomic/std::kill_dependency"]
66
helpviewer_keywords: ["std::atomic_compare_exchange_strong [C++]", "std::atomic_compare_exchange_strong_explicit [C++]", "std::atomic_compare_exchange_weak [C++]", "std::atomic_compare_exchange_weak_explicit [C++]", "std::atomic_exchange [C++]", "std::atomic_exchange_explicit [C++]", "std::atomic_fetch_add [C++]", "std::atomic_fetch_add_explicit [C++]", "std::atomic_fetch_and [C++]", "std::atomic_fetch_and_explicit [C++]", "std::atomic_fetch_or [C++]", "std::atomic_fetch_or_explicit [C++]", "std::atomic_fetch_sub [C++]", "std::atomic_fetch_sub_explicit [C++]", "std::atomic_fetch_xor [C++]", "std::atomic_fetch_xor_explicit [C++]", "std::atomic_flag_clear [C++]", "std::atomic_flag_clear_explicit [C++]", "std::atomic_flag_test_and_set [C++]", "std::atomic_flag_test_and_set_explicit [C++]", "std::atomic_init [C++]", "std::atomic_is_lock_free [C++]", "std::atomic_load [C++]", "std::atomic_load_explicit [C++]", "std::atomic_signal_fence [C++]", "std::atomic_store [C++]", "std::atomic_store_explicit [C++]", "std::atomic_thread_fence [C++]", "std::kill_dependency [C++]"]
@@ -676,8 +676,8 @@ A [`memory_order`](../standard-library/atomic-enums.md#memory_order_enum).
676676
Sets the **`bool`** flag in an [`atomic_flag`](../standard-library/atomic-flag-structure.md) object to **`true`**, within the constraints of the [`memory_order.memory_order_seq_cst`](../standard-library/atomic-enums.md#memory_order_enum).
677677

678678
```cpp
679-
inline bool atomic_flag_test_and_set(volatile atomic_flag* Flag,) noexcept;
680-
inline bool atomic_flag_test_and_set(atomic_flag* Flag,) noexcept;
679+
inline bool atomic_flag_test_and_set(volatile atomic_flag* Flag) noexcept;
680+
inline bool atomic_flag_test_and_set(atomic_flag* Flag) noexcept;
681681
```
682682
683683
### Parameters

docs/standard-library/basic-string-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4201,7 +4201,7 @@ Specifies a new size for a string, appending or erasing elements as required.
42014201

42024202
```cpp
42034203
void resize(
4204-
size_type count,);
4204+
size_type count);
42054205

42064206
void resize(
42074207
size_type count,

docs/standard-library/codecvt-class.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ description: "describes the Microsoft C runtime `codecvt` class API"
44
ms.date: "11/09/2020"
55
f1_keywords: ["xlocale/std::codecvt", "xlocale/std::codecvt::extern_type", "xlocale/std::codecvt::intern_type", "xlocale/std::codecvt::state_type", "xlocale/std::codecvt::always_noconv", "xlocale/std::codecvt::do_always_noconv", "xlocale/std::codecvt::do_encoding", "xlocale/std::codecvt::do_in", "xlocale/std::codecvt::do_length", "xlocale/std::codecvt::do_max_length", "xlocale/std::codecvt::do_out", "xlocale/std::codecvt::do_unshift", "xlocale/std::codecvt::encoding", "xlocale/std::codecvt::in", "xlocale/std::codecvt::length", "xlocale/std::codecvt::max_length", "xlocale/std::codecvt::out", "xlocale/std::codecvt::unshift"]
66
helpviewer_keywords: ["std::codecvt [C++]", "std::codecvt [C++], extern_type", "std::codecvt [C++], intern_type", "std::codecvt [C++], state_type", "std::codecvt [C++], always_noconv", "std::codecvt [C++], do_always_noconv", "std::codecvt [C++], do_encoding", "std::codecvt [C++], do_in", "std::codecvt [C++], do_length", "std::codecvt [C++], do_max_length", "std::codecvt [C++], do_out", "std::codecvt [C++], do_unshift", "std::codecvt [C++], encoding", "std::codecvt [C++], in", "std::codecvt [C++], length", "std::codecvt [C++], max_length", "std::codecvt [C++], out", "std::codecvt [C++], unshift"]
7-
ms.assetid: 37d3efa1-2b7f-42b6-b04f-7a972c8c2c86
87
---
98
# `codecvt` Class
109

@@ -228,7 +227,7 @@ virtual result do_in(
228227
const Byte*& next1,
229228
CharType* first2,
230229
CharType* last2,
231-
CharType*& next2,) const;
230+
CharType*& next2) const;
232231
```
233232
234233
### Parameters
@@ -517,7 +516,7 @@ result in(
517516
const Byte*& next1,
518517
CharType* first2,
519518
CharType* last2,
520-
CharType*& next2,) const;
519+
CharType*& next2) const;
521520
```
522521
523522
### Parameters

docs/standard-library/deque-functions.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
description: "Learn more about: <deque> functions"
32
title: "<deque> functions"
3+
description: "Learn more about: <deque> functions"
44
ms.date: "11/04/2016"
55
f1_keywords: ["deque/std::swap"]
6-
ms.assetid: 1d14be53-b0b7-4f66-90cc-65bdeac563fd
76
---
87
# `<deque>` functions
98

@@ -14,7 +13,7 @@ Exchanges the elements of two deques.
1413
```cpp
1514
void swap(
1615
deque<Type, Allocator>& left,
17-
deque<Type, Allocator>& right,);
16+
deque<Type, Allocator>& right);
1817
```
1918
2019
### Parameters

docs/standard-library/insert-iterator-class.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
2-
description: "Learn more about: insert_iterator Class"
32
title: "insert_iterator Class"
3+
description: "Learn more about: insert_iterator Class"
44
ms.date: 06/15/2022
55
f1_keywords: ["iterator/std::insert_iterator", "iterator/std::insert_iterator::container_type", "iterator/std::insert_iterator::reference"]
66
helpviewer_keywords: ["std::insert_iterator [C++]", "std::insert_iterator [C++], container_type", "std::insert_iterator [C++], reference"]
7-
ms.assetid: d5d86405-872e-4e3b-9e68-c69a2b7e8221
87
ms.custom: devdivchpfy22
98
---
109

@@ -293,7 +292,7 @@ Inserts a value into the container and returns the iterator updated to point to
293292
294293
```cpp
295294
insert_iterator<Container>& operator=(
296-
typename Container::const_reference val,);
295+
typename Container::const_reference val);
297296
298297
insert_iterator<Container>& operator=(
299298
typename Container::value_type&& val);

0 commit comments

Comments
 (0)