Skip to content

Commit

Permalink
GP-4502 changed UnionDataTypes to Unions
Browse files Browse the repository at this point in the history
  • Loading branch information
ghidra007 committed Apr 9, 2024
1 parent be8c4dd commit 664c7fe
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ private boolean commonRefinement(ArrayList<Primitive> first, ArrayList<Primitive
* @param offset is the starting offset of the union within the parent
* @return true if a common refinement was found and appended
*/
private boolean handleUnion(UnionDataType dt, int max, int offset) {
private boolean handleUnion(Union dt, int max, int offset) {
if (unionInvalid) {
return false;
}
Expand Down Expand Up @@ -232,7 +232,7 @@ private boolean extract(DataType dt, int max, int offset) {
return true;
}
case PcodeDataTypeManager.TYPE_UNION:
return handleUnion((UnionDataType) dt, max, offset);
return handleUnion((Union) dt, max, offset);
case PcodeDataTypeManager.TYPE_STRUCT:
break;
default:
Expand Down

0 comments on commit 664c7fe

Please sign in to comment.