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.
2 parents 72bd225 + 03bbe1b commit 3424636Copy full SHA for 3424636
docs/code-quality/c26435.md
@@ -7,7 +7,7 @@ helpviewer_keywords: ["C26435"]
7
---
8
# Warning C26435
9
10
-> Function '*symbol*' should specify exactly one of 'virtual', 'override', or 'final' (c.128)
+> The virtual function '*symbol*' should specify exactly one of 'virtual', 'override', or 'final' (c.128)
11
12
## C++ Core Guidelines
13
@@ -41,6 +41,9 @@ public:
41
void Draw() override final { // C26435, only 'final' is necessary.
42
//...
43
}
44
+ virtual void DrawCircumference() final { // C26435, should be neither 'virtual' nor 'final'.
45
+ //...
46
+ }
47
};
48
```
49
0 commit comments