You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Extension/CHANGELOG.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,16 @@
1
1
# C/C++ for Visual Studio Code Changelog
2
2
3
+
## Version 1.14.2: February 9, 2023
4
+
### Enhancements
5
+
* Add error messages for Create Declaration / Definition. [#10163](https://github.com/microsoft/vscode-cpptools/issues/10163)
6
+
* Follow up changes to the new status UI. [#10413](https://github.com/microsoft/vscode-cpptools/issues/10413)
7
+
* Add Ada to supported languages for debugging. [#10475](https://github.com/microsoft/vscode-cpptools/issues/10475)
8
+
* Anthony Leonardo Gracio (@AnthonyLeonardoGracio) [PR #10476](https://github.com/microsoft/vscode-cpptools/pull/10476)
9
+
10
+
### Bug Fixes
11
+
* Show a reload prompt after `C_Cpp.hover` is changed. [#10076](https://github.com/microsoft/vscode-cpptools/issues/10076)
12
+
* Fix a crash with empty PATH entries on Linux/Mac.
13
+
3
14
## Version 1.14.1: February 2, 2023
4
15
### New Features
5
16
* Add recursive macro expansion on hover. [#3579](https://github.com/microsoft/vscode-cpptools/issues/3579)
@@ -40,6 +51,7 @@
40
51
* Fix an incorrect IntelliSense error with `std::bind`, c++17, and windows-msvc-arm64 mode. [#10304](https://github.com/microsoft/vscode-cpptools/issues/10304)
41
52
* Fix vcFormat when using lambda functions. [#10326](https://github.com/microsoft/vscode-cpptools/issues/10326)
42
53
* Fix IntelliSense crash in field_for_lambda_capture. [#10359](https://github.com/microsoft/vscode-cpptools/issues/10359)
54
+
* Fix an IntelliSense crash when using the French language pack. [#10374](https://github.com/microsoft/vscode-cpptools/issues/10374)
Copy file name to clipboardExpand all lines: Extension/src/nativeStrings.json
+71-2Lines changed: 71 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -267,7 +267,7 @@
267
267
"file_tag": "File",
268
268
"compiler_default_language_standard_version_old" : "Compiler returned default language standard version: {0}. Since this version is old, will try to use newer version {1} as default.",
269
269
"unexpected_output_from_clang_tidy": "Unexpected output from clang-tidy: {0}. Expected: {1}.",
"hint": "The operation 'Create Declaration / Definition' on a function was not successful. %s is the error info that has a period at the end of the string."
408
+
},
409
+
"refactor_create_default_delete":
410
+
{
411
+
"text": "Unable to create function '%s'. Creating defaulted or deleted functions is not supported.",
412
+
"hint": "%s is the function that could not be created."
413
+
},
414
+
"refactor_function_copied_to_clipboard": "The function signature was copied to the clipboard.",
415
+
"refactor_function_not_created":
416
+
{
417
+
"text": "Unable to create function '%s'.",
418
+
"hint": "%s is the function that could not be created."
419
+
},
420
+
"refactor_ambiguous_locations":
421
+
{
422
+
"text": "Unable to find an unambiguous location for function '%s'.",
423
+
"hint": "%s is the function for the unambiguous location."
424
+
},
425
+
"refactor_file_not_in_project":
426
+
{
427
+
"text": "File '%s' was not found.",
428
+
"hint": "%s is the file that was not found."
429
+
},
430
+
"refactor_not_class_namespace":
431
+
{
432
+
"text": "Could not find class or namespace '%s'.",
433
+
"hint": "%s is the class or namespace code that could not be found."
434
+
},
435
+
"refactor_operation_unsupported":
436
+
{
437
+
"text": "The operation is not supported for '%s'.",
438
+
"hint": "%s is the function that is not supported for an operation that involves automatically generating code."
0 commit comments