Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit0fd436f

Browse files
authored
Merge pull requestmicrosoft#13280 from microsoft/main
Merge for 1.24.1
2 parentsb6e18b0 +44406ce commit0fd436f

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

‎Extension/CHANGELOG.md‎

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
#C/C++ for Visual Studio Code Changelog
22

3-
##Version 1.24.0: Febrary 11, 2025
3+
##Version 1.24.1: February 13, 2025
4+
###Bug Fixes
5+
* Fix random IntelliSense process crashes on Linux/macOS when`C_Cpp.intelliSenseCacheSize` is > 0.[#12668](https://github.com/microsoft/vscode-cpptools/issues/12668)
6+
* Fix a crash when processing Copilot snippets.
7+
* Fix a crash when using Copilot hover.
8+
9+
##Version 1.24.0: February 11, 2025
410
###New Feature
511
* Add experimental support for Copilot descriptions in hover tooltips, controlled by the`C_Cpp.copilotHover` setting. This feature is currently off by default and may be subject to A/B experimentation. To opt-out of Copilot Hover experiments, set`C_Cpp.copilotHover` to`disabled`.
612

‎Extension/package.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name":"cpptools",
33
"displayName":"C/C++",
44
"description":"C/C++ IntelliSense, debugging, and code browsing.",
5-
"version":"1.24.0-main",
5+
"version":"1.24.1-main",
66
"publisher":"ms-vscode",
77
"icon":"LanguageCCPP_color_128x.png",
88
"readme":"README.md",

‎Extension/src/LanguageServer/extension.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1224,7 +1224,7 @@ async function handleCrashFileRead(crashDirectory: string, crashFile: string, cr
12241224
if(ret?.output===funcStr){
12251225
ret=awaitutil.spawnChildProcess(filtPath,[funcStr],undefined,true).catch(logAndReturn.undefined);
12261226
}
1227-
if(ret!==undefined&&ret.succeeded){
1227+
if(ret!==undefined&&ret.succeeded&&!ret.output.startsWith("Could not open input file")){
12281228
funcStr=ret.output;
12291229
funcStr=funcStr.replace(/std::(?:__1|__cxx11)/g,"std");// simplify std namespaces.
12301230
funcStr=funcStr.replace(/std::basic_/g,"std::");

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp