Skip to content

Commit 040ff2e

Browse files
authored
Merge pull request #10562 from Rageking8/clean-up-superfluous-semicolons
Clean up superfluous semicolons
2 parents 2bc0960 + 4b3da6a commit 040ff2e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/debugger/debug-interface-access/idiaenumframedata.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
description: Enumerates the various frame data elements contained in the data source.
32
title: IDiaEnumFrameData
3+
description: Enumerates the various frame data elements contained in the data source.
44
ms.date: "11/04/2016"
55
ms.topic: "reference"
66
dev_langs:
@@ -78,7 +78,7 @@ This example shows how to obtain (the `GetEnumFrameData` function) and use (the
7878

7979
void ShowFrameData(IDiaSession *pSession)
8080
{
81-
IDiaEnumFrameData* pEnumFrameData = GetEnumFrameData(pSession);;
81+
IDiaEnumFrameData* pEnumFrameData = GetEnumFrameData(pSession);
8282

8383
if (pEnumFrameData != NULL)
8484
{

docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_VisualStudioDemo/cpp/AppLookDlg.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ CAppLookDlg::CAppLookDlg(BOOL bStartup, CWnd* pParent /*=NULL*/) :
3434
m_bActiveTabCloseButton = FALSE;
3535

3636
m_nAppLook = theApp.GetInt(_T("AppLook"), 3);
37-
m_nStyle = theApp.GetInt(_T("AppStyle"), 0);;
37+
m_nStyle = theApp.GetInt(_T("AppStyle"), 0);
3838
m_bShowAtStartup = theApp.GetInt(_T("ShowAppLookAtStartup"), TRUE);
3939
m_bOneNoteTabs = theApp.GetInt(_T("OneNoteTabs"), TRUE);
4040
m_bDockTabColors = theApp.GetInt(_T("DockTabColors"), FALSE);

docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_WordPad/cpp/wordpvw.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ void CWordPadView::OnInsertDateTime()
456456
{
457457
CDateDialog dlg;
458458
if (dlg.DoModal() == IDOK)
459-
GetRichEditCtrl().ReplaceSel(dlg.m_strSel);;
459+
GetRichEditCtrl().ReplaceSel(dlg.m_strSel);
460460
}
461461

462462
void CWordPadView::OnFormatParagraph()

0 commit comments

Comments
 (0)