Skip to content

Commit

Permalink
1. fix variable type unknown issue
Browse files Browse the repository at this point in the history
  • Loading branch information
HenryRiley0 committed Aug 26, 2024
1 parent 7196ed1 commit bd1dc49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Versioning].

### Added

- fix variable type unknown issue ([@henryriley0])
- fix gdb check error when debug beginning ([@henryriley0])
- fix implicitly type error in log message when build vsix ([@henryriley0])
- check for configured debugger before start to provide a nicer error message
Expand Down
2 changes: 1 addition & 1 deletion src/mibase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ export class MI2DebugSession extends DebugSession {
variables.push({
name: variable.name,
type: variable.type,
value: "<unknown>",
value: variable.type,
variablesReference: createVariable(variable.name)
});
}
Expand Down

0 comments on commit bd1dc49

Please sign in to comment.