X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem%2FSystem.CodeDom%2FCodeDefaultValueExpression.cs;h=750f42f5f5373a1601983389f47deb295d9f83c6;hb=c8c1a778e800db1dd7bc5326e148a5a1921f4d03;hp=1dbdda9a3c242b90782b6596f1ff29a1f3c2da46;hpb=da4f9e9b2afb23791029d0bb09d78b868aabd870;p=mono.git diff --git a/mcs/class/System/System.CodeDom/CodeDefaultValueExpression.cs b/mcs/class/System/System.CodeDom/CodeDefaultValueExpression.cs index 1dbdda9a3c2..750f42f5f53 100644 --- a/mcs/class/System/System.CodeDom/CodeDefaultValueExpression.cs +++ b/mcs/class/System/System.CodeDom/CodeDefaultValueExpression.cs @@ -26,8 +26,6 @@ // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // -#if NET_2_0 - using System.Runtime.InteropServices; namespace System.CodeDom { @@ -59,7 +57,13 @@ namespace System.CodeDom { } set { type = value; } } + + // + // ICodeDomVisitor method + // + internal override void Accept (ICodeDomVisitor visitor) + { + visitor.Visit (this); + } } } - -#endif