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 c9d2247 commit e26bdfeCopy full SHA for e26bdfe
docs/build/reference/permissive-standards-conformance.md
@@ -326,7 +326,7 @@ struct B {
326
327
template<typename T>
328
struct D : T {
329
-void f() {
+ void f() {
330
// The call to g was incorrectly allowed in VS2017:
331
g(); // Now under /permissive-: C3861
332
// Possible fixes:
@@ -337,8 +337,8 @@ void f() {
337
338
int main()
339
{
340
- D<B> d;
341
- d.f();
+ D<B> d;
+ d.f();
342
}
343
```
344
0 commit comments