Skip to content

Commit

Permalink
Reduce VS Code requirement. (#3241)
Browse files Browse the repository at this point in the history
* Reduce VS Code requirement.
* Remove more addresses in crash telemetry.
  • Loading branch information
sean-mcmanus authored Mar 2, 2019
1 parent 5512035 commit 95dd538
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"license": "SEE LICENSE IN LICENSE.txt",
"engines": {
"vscode": "^1.31.0"
"vscode": "^1.30.0"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-cpptools/issues",
Expand Down
1 change: 1 addition & 0 deletions Extension/src/LanguageServer/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -859,6 +859,7 @@ function handleCrashFileRead(err: NodeJS.ErrnoException, data: string): void {

// Get rid of the memory addresses (which breaks being able get a hit count for each crash call stack).
data = data.replace(/0x................ /g, "");
data = data.replace(/0x1........ \+ 0/g, "");

// Get rid of the process names on each line and just add it to the start.
const process1: string = "Microsoft.VSCode.CPP.IntelliSense.Msvc.darwin\t";
Expand Down

0 comments on commit 95dd538

Please sign in to comment.