Skip to content

Commit

Permalink
1. add change log for STL containers issue
Browse files Browse the repository at this point in the history
  • Loading branch information
HenryRiley0 committed Aug 23, 2024
1 parent 70a82af commit 0413cb6
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

- solve the problem of failed parsing of containers (@henryriley0)
- Added registers view ([@nomtats]) #242
- Enabled breakpoints inside `riscv` files ([@William-An]) #404

Expand Down
2 changes: 1 addition & 1 deletion src/backend/gdb_expansion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ export function expandValue(variableCreate: Function, value: string, root: strin
return parseTupleOrList();
else if(value.startsWith("std::")){
const eqPos = value.indexOf("=");
value = value.substring(eqPos + 1).trim();
value = value.substring(eqPos + 2);
return parseValue();
}
else
Expand Down

0 comments on commit 0413cb6

Please sign in to comment.