Skip to content

Commit

Permalink
Merge branch 'master' into stl1
Browse files Browse the repository at this point in the history
  • Loading branch information
HenryRiley0 authored Sep 14, 2024
2 parents 4c51a66 + ab2ffff commit 8788b8d
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 @@ -13,6 +13,7 @@ Versioning].
### Added

- solve the problem of failed parsing of containers ([@henryriley0])
- fix missing output of variable type for structure ([@henryriley0])
- add static variable support ([@henryriley0])
- fix gdb check error when debug beginning ([@henryriley0])
- fix implicitly type error in log message when build vsix ([@henryriley0])
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 8788b8d

Please sign in to comment.