Skip to content

Commit a70fc8f

Browse files
authored
Merge pull request #5628 from MicrosoftDocs/FromPublicMasterBranch
Confirm merge from FromPublicMasterBranch to main to sync with https://github.com/MicrosoftDocs/cpp-docs (branch main)
2 parents 25cbd91 + 35476bb commit a70fc8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/error-messages/compiler-warnings/compiler-warning-level-4-c4100.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The following sample generates C4100:
2121
// compile with: /W4
2222
void func(int i) { // C4100, delete the unreferenced parameter to
2323
//resolve the warning
24-
// i; // or, add a reference like this
24+
// i; // Or uncomment this line to add a reference
2525
}
2626

2727
int main()

0 commit comments

Comments
 (0)