From af4ec7c89d0192ad14392da04e8c097da8ec9e48 Mon Sep 17 00:00:00 2001 From: Jan Kotas Date: Sat, 11 Aug 2018 07:43:16 -0700 Subject: Make RuntimeType sealed and deleted support for introspection only loads (#19427) - Sealed Runtime makes `is RuntimeType` and similar checks faster. These checks are fairly common in reflection. - Delete support for introspection only loads from the runtime. We do not plan to use in .NET Core. The support for introspection loads inherited from RuntimeType and thus it is incompatible with sealed RuntimeType. --- src/vm/crossgencompile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vm/crossgencompile.cpp') diff --git a/src/vm/crossgencompile.cpp b/src/vm/crossgencompile.cpp index 47894bfbdd..ce36eec1ab 100644 --- a/src/vm/crossgencompile.cpp +++ b/src/vm/crossgencompile.cpp @@ -385,7 +385,7 @@ void EEPolicy::HandleFatalError(UINT exitCode, UINT_PTR address, LPCWSTR pszMess //--------------------------------------------------------------------------------------- -Assembly * AppDomain::RaiseAssemblyResolveEvent(AssemblySpec * pSpec, BOOL fIntrospection, BOOL fPreBind) +Assembly * AppDomain::RaiseAssemblyResolveEvent(AssemblySpec * pSpec, BOOL fPreBind) { return NULL; } -- cgit v1.2.3