summaryrefslogtreecommitdiff
path: root/src/vm
diff options
context:
space:
mode:
Diffstat (limited to 'src/vm')
-rw-r--r--src/vm/object.inl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vm/object.inl b/src/vm/object.inl
index 64cf9ed4dd..ff60a7808a 100644
--- a/src/vm/object.inl
+++ b/src/vm/object.inl
@@ -293,7 +293,7 @@ __forceinline BOOL Nullable::IsNullableForType(TypeHandle type, MethodTable* par
return FALSE;
if (!type.AsMethodTable()->HasInstantiation()) // shortcut, if it is not generic it can't be Nullable<T>
return FALSE;
- return Nullable::IsNullableForTypeHelper(type.AsMethodTable(), paramMT);
+ return Nullable::IsNullableForTypeHelper(type.AsMethodTable(), paramMT);
}
//===============================================================================
@@ -305,7 +305,7 @@ __forceinline BOOL Nullable::IsNullableForTypeNoGC(TypeHandle type, MethodTable*
return FALSE;
if (!type.AsMethodTable()->HasInstantiation()) // shortcut, if it is not generic it can't be Nullable<T>
return FALSE;
- return Nullable::IsNullableForTypeHelperNoGC(type.AsMethodTable(), paramMT);
+ return Nullable::IsNullableForTypeHelperNoGC(type.AsMethodTable(), paramMT);
}
//===============================================================================