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 473f8b1 commit 6f2b481Copy full SHA for 6f2b481
docs/error-messages/compiler-errors-2/compiler-error-c2556.md
@@ -21,9 +21,7 @@ The following example generates C2556:
21
```cpp
22
// C2556.cpp
23
// compile with: /c
24
-class C {
25
- int func();
26
- double func(); // C2556
27
- int func(int i); // ok parameter lists differ
28
-};
+int func();
+double func(); // C2556
+int func(int i); // OK parameter lists differ
29
```
0 commit comments