summaryrefslogtreecommitdiff
path: root/src/vm/array.cpp
diff options
context:
space:
mode:
authorantofik <antofik@gmail.com>2018-01-22 05:03:51 +0300
committerJan Kotas <jkotas@microsoft.com>2018-01-21 18:03:51 -0800
commit59714b683f40fac869050ca08acc5503e84dc776 (patch)
tree1512f4562d579977288002abb6432b32a2df2e8f /src/vm/array.cpp
parent3bd16103e76fbad8de7a37cb37f6a6f74ce46dfd (diff)
downloadcoreclr-59714b683f40fac869050ca08acc5503e84dc776.tar.gz
coreclr-59714b683f40fac869050ca08acc5503e84dc776.tar.bz2
coreclr-59714b683f40fac869050ca08acc5503e84dc776.zip
Remove AppDomainLeaks configuration option (#15956)
Removed all usages of AppDomainLeaks configuration option and CHECK_APP_DOMAIN_LEAKS feature Fix #12094
Diffstat (limited to 'src/vm/array.cpp')
-rw-r--r--src/vm/array.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vm/array.cpp b/src/vm/array.cpp
index 3a33aff43a..08a86a39d7 100644
--- a/src/vm/array.cpp
+++ b/src/vm/array.cpp
@@ -432,7 +432,7 @@ MethodTable* Module::CreateArrayMethodTable(TypeHandle elemTypeHnd, CorElementTy
pClass->SetArrayElementType (elemType);
pClass->SetMethodTable (pMT);
-#if defined(CHECK_APP_DOMAIN_LEAKS) || defined(_DEBUG)
+#if defined(_DEBUG)
// Non-covariant arrays of agile types are agile
if (elemType != ELEMENT_TYPE_CLASS && elemTypeHnd.IsAppDomainAgile())
pClass->SetAppDomainAgile();