We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 15c1e98 + a5bfd8f commit 8d7dfcfCopy full SHA for 8d7dfcf
docs/code-quality/c28230.md
@@ -1,6 +1,7 @@
1
---
2
title: C28230
3
-ms.date: 11/04/2016
+description: "Understand the causes of Microsoft C/C++ code analysis warning C28230, and learn how to fix them."
4
+ms.date: 10/23/2020
5
ms.topic: reference
6
f1_keywords: ["C28230"]
7
helpviewer_keywords: ["C28230"]
@@ -24,7 +25,7 @@ struct MyStruct
24
25
};
26
27
// Oops, the name of the member is spelled wrong so it will not be found
-void f(_Out_writes_(value.usefulMember) int *buffer, MyStruct value)
28
+void f(_Out_writes_(value.usefulmember) int *buffer, MyStruct value)
29
{
30
for(int i = 0 ; i < value.usefulMember; i++)
31
0 commit comments