Skip to content

Commit 0fa33a2

Browse files
committed
Change C++ auto closing comment start from /* to /**
Fixes microsoft#77008
1 parent 95f0923 commit 0fa33a2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

extensions/cpp/language-configuration.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
{ "open": "(", "close": ")" },
1515
{ "open": "'", "close": "'", "notIn": ["string", "comment"] },
1616
{ "open": "\"", "close": "\"", "notIn": ["string"] },
17-
{ "open": "/*", "close": " */", "notIn": ["string", "comment"] }
17+
{ "open": "/**", "close": " */", "notIn": ["string", "comment"] }
1818
],
1919
"surroundingPairs": [
2020
["{", "}"],

0 commit comments

Comments
 (0)