mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-12 23:23:17 +00:00
Merge remote-tracking branch 'origin/Ghidra_11.1'
This commit is contained in:
commit
93133be7a8
@ -100,13 +100,13 @@ public class MDQualification extends MDParsableItem implements Iterable<MDQualif
|
|||||||
int loc = dmang.getIndex();
|
int loc = dmang.getIndex();
|
||||||
MDQualifier qual = new MDQualifier(dmang);
|
MDQualifier qual = new MDQualifier(dmang);
|
||||||
qual.parse();
|
qual.parse();
|
||||||
quals.add(qual);
|
|
||||||
// This is a quick fix to prevent infinite looping when the next character is not
|
// This is a quick fix to prevent infinite looping when the next character is not
|
||||||
// expected. TODO: need to work on code the breaks symbols on these other
|
// expected. TODO: need to work on code the breaks symbols on these other
|
||||||
// characters that we have seen such as '.' and '`'.
|
// characters that we have seen such as '.' and '`'.
|
||||||
if (dmang.getIndex() == loc) {
|
if (dmang.getIndex() == loc) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
quals.add(qual);
|
||||||
}
|
}
|
||||||
if (dmang.peek() == '@') {
|
if (dmang.peek() == '@') {
|
||||||
dmang.increment(); // Skip past @.
|
dmang.increment(); // Skip past @.
|
||||||
|
Loading…
Reference in New Issue
Block a user