Skip to content

Commit 97d53c6

Browse files
committed
fix code fence
1 parent acda7b3 commit 97d53c6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/overview/cpp-conformance-improvements.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ Visual Studio 2022 version 17.14 includes the following conformance improvements
5555

5656
```cpp
5757
#include <initializer_list>
58-
58+
5959
void test()
6060
{
61-
    constexpr std::initializer_list<int> xs { 1, 2, 3 }; // Previously accepted, now an error
62-
61+
constexpr std::initializer_list<int> xs { 1, 2, 3 }; // Previously accepted, now an error
62+
6363
static constexpr std::initializer_list<int> ys { 1, 2, 3 }; // Correct usage - note use of static
6464
}
6565
```

0 commit comments

Comments
 (0)