Skip to content

Commit 6c799a7

Browse files
authored
Merge pull request #3580 from MicrosoftDocs/FromPublicMasterBranch
Confirm merge from FromPublicMasterBranch to master to sync with https://github.com/MicrosoftDocs/cpp-docs (branch master)
2 parents 7f86437 + e2f36b0 commit 6c799a7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/code-quality/c26432.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ namespace no_warning
5050
struct S
5151
{
5252
S() noexcept { _count++; }
53-
S(const S& s) = delete;
54-
S(S&& s) = delete;
55-
S& operator=(const S& s) = delete;
56-
S& operator=(S&& s) = delete;
53+
S(const S&) = delete;
54+
S(S&&) = delete;
55+
S& operator=(const S&) = delete;
56+
S& operator=(S&&) = delete;
5757
~S() { --_count; }
5858
static unsigned _count;
5959
};

0 commit comments

Comments
 (0)