Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/GP-0_ghizard_PDB_undo_main_part_…
Browse files Browse the repository at this point in the history
…of_GP-4595_for_now_due_to_namespace_class_issues'
  • Loading branch information
ryanmkurtz committed Jul 5, 2024
2 parents d12c27d + ad22c4a commit 76977bd
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,11 @@ SymbolPath getSymbolPath(AbstractComplexMsType type) {
// often had a member that also lambda that was marked with the exact same namespace/name
// as the containing structure. We found that the mangled names had more accurate and
// distinguished lambda numbers.
String mangledName = type.getMangledName();
if (mangledName != null) {
symbolPath = getSymbolPathFromMangledTypeName(mangledName);
}
// Temporarily comment out main work of GP-4595 due to namespace/class issues (20240705) TODO: fix
// String mangledName = type.getMangledName();
// if (mangledName != null) {
// symbolPath = getSymbolPathFromMangledTypeName(mangledName);
// }
if (symbolPath == null) {
String fullPathName = type.getName();
symbolPath = new SymbolPath(SymbolPathParser.parse(fullPathName));
Expand Down

0 comments on commit 76977bd

Please sign in to comment.