Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix lint
  • Loading branch information
kotlarmilos authored and github-actions committed Aug 24, 2023
commit b533d369df37b6935fb9a52e45084f1a8a70bba6
2 changes: 1 addition & 1 deletion src/mono/mono/mini/jit-icalls.c
Original file line number Diff line number Diff line change
Expand Up @@ -1455,7 +1455,7 @@ mono_gsharedvt_constrained_call (gpointer mp, MonoMethod *cmethod, MonoClass *kl
break;
default:
/* Object.GetType () is an intrinsic under netcore */
if ((!mono_class_is_ginst (cmethod->klass) && !cmethod->is_inflated && !strcmp (cmethod->name, "GetType"))) {
if (!mono_class_is_ginst (cmethod->klass) && !cmethod->is_inflated && !strcmp (cmethod->name, "GetType")) {
MonoVTable *vt;

vt = mono_class_vtable_checked (klass, error);
Expand Down