Skip to content

Commit e26bdfe

Browse files
author
Colin Robertson
committed
code format fix
1 parent c9d2247 commit e26bdfe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/build/reference/permissive-standards-conformance.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ struct B {
326326
327327
template<typename T>
328328
struct D : T {
329-
void f() {
329+
void f() {
330330
// The call to g was incorrectly allowed in VS2017:
331331
g(); // Now under /permissive-: C3861
332332
// Possible fixes:
@@ -337,8 +337,8 @@ void f() {
337337
338338
int main()
339339
{
340-
D<B> d;
341-
d.f();
340+
D<B> d;
341+
d.f();
342342
}
343343
```
344344

0 commit comments

Comments
 (0)