Skip to content

Commit a5d7cd7

Browse files
authored
Merge pull request #5353 from Rageking8/remove-empty-lines-at-end-of-code-block
Remove empty lines at end of code block
2 parents cdd9e9c + ff9599e commit a5d7cd7

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

docs/code-quality/c26434.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ description: "Microsoft C++ Code Analysis warning C26434 for the C++ Core Guidel
44
ms.date: 08/21/2020
55
f1_keywords: ["C26434", "DONT_HIDE_METHODS"]
66
helpviewer_keywords: ["C26434"]
7-
ms.assetid: 7f66477f-da66-444a-a6e3-44513d7d7e31
87
---
98
# Warning C26434
109

@@ -44,5 +43,4 @@ struct Derived : Base
4443
void not_virtual() noexcept {} // C26434, hides a non-virtual function
4544
virtual void not_virtual(int i) noexcept {} // C26434, and parameters ignored
4645
};
47-
4846
```

docs/code-quality/c26483.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: Warning C26483
3+
description: CppCoreCheck rule C26483 that enforces C++ Core Guidelines Bounds.2
34
ms.date: 03/22/2018
45
f1_keywords: ["C26483", "STATIC_INDEX_OUT_OF_RANGE"]
56
helpviewer_keywords: ["C26483"]
6-
description: CppCoreCheck rule C26483 that enforces C++ Core Guidelines Bounds.2
77
---
88
# Warning C26483
99

@@ -24,5 +24,4 @@ void function()
2424
int arr2[] { 1, 2, 3 };
2525
arr2[3] = 4; // C26483, 3 is outside the bounds of the array
2626
}
27-
2827
```

docs/error-messages/compiler-warnings/compiler-warning-level-2-c4150.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
description: "Learn more about: Compiler Warning (level 2) C4150"
32
title: Compiler warning (level 2) C4150
4-
ms.date: "11/04/2016"
3+
description: "Learn more about: Compiler Warning (level 2) C4150"
4+
ms.date: 11/04/2016
55
f1_keywords: ["C4150"]
66
helpviewer_keywords: ["C4150"]
77
---
@@ -75,7 +75,6 @@ void NoDestruct( IncClass* pIncClass )
7575
{
7676
delete pIncClass;
7777
}
78-
7978
```
8079

8180
## See also

0 commit comments

Comments
 (0)