Skip to content

Commit dcce351

Browse files
Updated C6279
Removed extra characters
1 parent 7d270e7 commit dcce351

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/code-quality/c6279.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.assetid: 0af88b58-35df-456f-8c02-e8eeffe3b7de
99
---
1010
# Warning C6279
1111

12-
> '\**variable-name*' is allocated with scalar new, deleted with array delete []
12+
> '*variable-name*' is allocated with scalar new, deleted with array delete []
1313
1414
This warning appears only in C++ code and indicates that the calling function has inconsistently allocated memory with the scalar `new` operator, but freed it with the array `delete[]` operator. If memory is allocated with scalar `new`, it should typically be freed with scalar `delete`.
1515

0 commit comments

Comments
 (0)