From: danmosemsft Date: Tue, 17 Jan 2017 23:46:45 +0000 (-0800) Subject: Remove FEATURE_COLLECTIBLE_TYPES symbol X-Git-Tag: accepted/tizen/base/20180629.140029~2539^2~17 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4aa0b8d6ec28ce759effe64c6babd4ae74018bce;p=platform%2Fupstream%2Fcoreclr.git Remove FEATURE_COLLECTIBLE_TYPES symbol --- diff --git a/clr.coreclr.props b/clr.coreclr.props index 47371c3..c8c391c 100644 --- a/clr.coreclr.props +++ b/clr.coreclr.props @@ -7,7 +7,6 @@ true true true - true true true true diff --git a/clr.defines.targets b/clr.defines.targets index b4de3b5..98dff71 100644 --- a/clr.defines.targets +++ b/clr.defines.targets @@ -135,7 +135,6 @@ $(DefineConstants);FEATURE_CLASSIC_COMINTEROP $(DefineConstants);FEATURE_CLICKONCE $(DefineConstants);FEATURE_CODEPAGES_FILE - $(DefineConstants);FEATURE_COLLECTIBLE_TYPES $(DefineConstants);FEATURE_COMINTEROP $(DefineConstants);FEATURE_COMINTEROP_APARTMENT_SUPPORT $(DefineConstants);FEATURE_COMINTEROP_MANAGED_ACTIVATION diff --git a/clr.desktop.props b/clr.desktop.props index 682c85a..070c2aa 100644 --- a/clr.desktop.props +++ b/clr.desktop.props @@ -15,7 +15,6 @@ true true true - true true true true diff --git a/src/mscorlib/src/System/Reflection/Emit/AssemblyBuilder.cs b/src/mscorlib/src/System/Reflection/Emit/AssemblyBuilder.cs index 9331ae1..9520015 100644 --- a/src/mscorlib/src/System/Reflection/Emit/AssemblyBuilder.cs +++ b/src/mscorlib/src/System/Reflection/Emit/AssemblyBuilder.cs @@ -257,9 +257,7 @@ namespace System.Reflection.Emit #if FEATURE_REFLECTION_ONLY_LOAD && access != AssemblyBuilderAccess.ReflectionOnly #endif // FEATURE_REFLECTION_ONLY_LOAD -#if FEATURE_COLLECTIBLE_TYPES && access != AssemblyBuilderAccess.RunAndCollect -#endif // FEATURE_COLLECTIBLE_TYPES ) { throw new ArgumentException(Environment.GetResourceString("Arg_EnumIllegalVal", (int)access), nameof(access)); diff --git a/src/mscorlib/src/System/Reflection/Emit/AssemblyBuilderAccess.cs b/src/mscorlib/src/System/Reflection/Emit/AssemblyBuilderAccess.cs index 5c86d8e..398f3d9 100644 --- a/src/mscorlib/src/System/Reflection/Emit/AssemblyBuilderAccess.cs +++ b/src/mscorlib/src/System/Reflection/Emit/AssemblyBuilderAccess.cs @@ -18,8 +18,6 @@ namespace System.Reflection.Emit #if FEATURE_REFLECTION_ONLY_LOAD ReflectionOnly = 6, // 4 | Save, #endif // FEATURE_REFLECTION_ONLY_LOAD -#if FEATURE_COLLECTIBLE_TYPES RunAndCollect = 8 | Run -#endif } }