X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem%2FSystem.CodeDom%2FCodeDefaultValueExpression.cs;h=7329c14c7575ab88e01706f17d616a2e13259d3b;hb=6d4a4e8e31b317b8f127d4cfbcd9cf51bb613cff;hp=1dbdda9a3c242b90782b6596f1ff29a1f3c2da46;hpb=6110fc90713ce59ff0996fcd3520e09a96575820;p=mono.git diff --git a/mcs/class/System/System.CodeDom/CodeDefaultValueExpression.cs b/mcs/class/System/System.CodeDom/CodeDefaultValueExpression.cs index 1dbdda9a3c2..7329c14c757 100644 --- a/mcs/class/System/System.CodeDom/CodeDefaultValueExpression.cs +++ b/mcs/class/System/System.CodeDom/CodeDefaultValueExpression.cs @@ -59,6 +59,14 @@ namespace System.CodeDom { } set { type = value; } } + + // + // ICodeDomVisitor method + // + internal override void Accept (ICodeDomVisitor visitor) + { + visitor.Visit (this); + } } }