mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-06-04 05:24:57 +08:00
Removed DWARF COLON_MANGLE
This commit is contained in:
+1
-4
@@ -59,12 +59,9 @@ public class NamespacePath implements Comparable<NamespacePath> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private static final String FWDSLASH_MANGLE = "-fwdslash-";
|
private static final String FWDSLASH_MANGLE = "-fwdslash-";
|
||||||
private static final String COLON_MANGLE = "-";
|
|
||||||
|
|
||||||
private static String preMangleName(String name) {
|
private static String preMangleName(String name) {
|
||||||
return name == null ? null
|
return name == null ? null : name.replaceAll(" ", "").replaceAll("/", FWDSLASH_MANGLE);
|
||||||
: name.replaceAll(":", COLON_MANGLE).replaceAll(" ", "").replaceAll("/",
|
|
||||||
FWDSLASH_MANGLE);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private final NamespacePath parent;
|
private final NamespacePath parent;
|
||||||
|
|||||||
Reference in New Issue
Block a user