We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa0d33b commit a5bfd8fCopy full SHA for a5bfd8f
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