Преглед на файлове

hide helper methods to the world

svn path=/trunk/mcs/; revision=102366
Jb Evain преди 17 години
родител
ревизия
04b6830abb
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      mcs/class/System.Core/System.Linq.Expressions/Expression.cs

+ 2 - 2
mcs/class/System.Core/System.Linq.Expressions/Expression.cs

@@ -1078,7 +1078,7 @@ namespace System.Linq.Expressions {
 			return t.IsPrimitive;
 			return t.IsPrimitive;
 		}
 		}
 
 
-		protected static bool IsPrimitiveConversion (Type type, Type target)
+		protected internal static bool IsPrimitiveConversion (Type type, Type target)
 		{
 		{
 			if (type == target)
 			if (type == target)
 				return true;
 				return true;
@@ -1089,7 +1089,7 @@ namespace System.Linq.Expressions {
 			return false;
 			return false;
 		}
 		}
 
 
-		protected static bool IsReferenceConversion (Type type, Type target)
+		protected internal static bool IsReferenceConversion (Type type, Type target)
 		{
 		{
 			if (type == target)
 			if (type == target)
 				return true;
 				return true;