File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ Versioning].
1313### Added
1414
1515- solve the problem of failed parsing of containers ([ @henryriley0 ] )
16+ - fix missing output of variable type for structure ([ @henryriley0 ] )
1617- add static variable support ([ @henryriley0 ] )
1718- fix gdb check error when debug beginning ([ @henryriley0 ] )
1819- fix implicitly type error in log message when build vsix ([ @henryriley0 ] )
Original file line number Diff line number Diff line change @@ -517,7 +517,7 @@ export class MI2DebugSession extends DebugSession {
517517 variables . push ( {
518518 name : variable . name ,
519519 type : variable . type ,
520- value : "<unknown>" ,
520+ value : variable . type ,
521521 variablesReference : createVariable ( variable . name )
522522 } ) ;
523523 }
You can’t perform that action at this time.
0 commit comments