Skip to content

Commit 6a06e1b

Browse files
committed
Fix build
1 parent 2ec8884 commit 6a06e1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/coreclr/tools/Common/Internal/Runtime/EETypeBuilderHelpers.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ private static bool IsTrackedReferenceWithFinalizer(TypeDesc type)
148148
if (!type.HasFinalizer)
149149
return false;
150150

151-
if ((MetadataType)type).HasCustomAttribute("System.Runtime.InteropServices.ObjectiveC", "ObjectiveCTrackedTypeAttribute"))
151+
if (((MetadataType)type).HasCustomAttribute("System.Runtime.InteropServices.ObjectiveC", "ObjectiveCTrackedTypeAttribute"))
152152
return true;
153153

154154
type = type.BaseType;

0 commit comments

Comments
 (0)