We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fba663 commit 5a14ff9Copy full SHA for 5a14ff9
1 file changed
docs/code-quality/c26432.md
@@ -50,10 +50,10 @@ namespace no_warning
50
struct S
51
{
52
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;
+ S(const S&) = delete;
+ S(S&&) = delete;
+ S& operator=(const S&) = delete;
+ S& operator=(S&&) = delete;
57
~S() { --_count; }
58
static unsigned _count;
59
};
0 commit comments