Skip to content

Commit a5bfd8f

Browse files
author
Colin Robertson
committed
Address cpp-docs 2516 sample code
1 parent fa0d33b commit a5bfd8f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/code-quality/c28230.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: C28230
3-
ms.date: 11/04/2016
3+
description: "Understand the causes of Microsoft C/C++ code analysis warning C28230, and learn how to fix them."
4+
ms.date: 10/23/2020
45
ms.topic: reference
56
f1_keywords: ["C28230"]
67
helpviewer_keywords: ["C28230"]
@@ -24,7 +25,7 @@ struct MyStruct
2425
};
2526

2627
// Oops, the name of the member is spelled wrong so it will not be found
27-
void f(_Out_writes_(value.usefulMember) int *buffer, MyStruct value)
28+
void f(_Out_writes_(value.usefulmember) int *buffer, MyStruct value)
2829
{
2930
for(int i = 0 ; i < value.usefulMember; i++)
3031
{

0 commit comments

Comments
 (0)