Skip to content

Commit

Permalink
Merge branch 'stl1' of github.com:HenryRiley0/code-debug into stl1
Browse files Browse the repository at this point in the history
  • Loading branch information
HenryRiley0 committed Sep 18, 2024
2 parents 72c8b34 + 8788b8d commit 436cd8c
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 436cd8c

Please sign in to comment.