Skip to content

Commit 0413cb6

Browse files
committed
1. add change log for STL containers issue
1 parent 70a82af commit 0413cb6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Versioning].
1212

1313
### Added
1414

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

src/backend/gdb_expansion.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ export function expandValue(variableCreate: Function, value: string, root: strin
192192
return parseTupleOrList();
193193
else if(value.startsWith("std::")){
194194
const eqPos = value.indexOf("=");
195-
value = value.substring(eqPos + 1).trim();
195+
value = value.substring(eqPos + 2);
196196
return parseValue();
197197
}
198198
else

0 commit comments

Comments
 (0)