changeset 47:488f3f6bcceb

PostBlitDeclaration.ctor
author korDen
date Sat, 21 Aug 2010 07:39:27 +0400
parents 0d32fd48dac4
children 0bd8afbaffd7
files dmd/PostBlitDeclaration.d
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/dmd/PostBlitDeclaration.d	Sat Aug 21 07:29:59 2010 +0400
+++ b/dmd/PostBlitDeclaration.d	Sat Aug 21 07:39:27 2010 +0400
@@ -8,13 +8,13 @@
 import dmd.OutBuffer;
 import dmd.HdrGenState;
 import dmd.STC;
+import dmd.Id;
 
 class PostBlitDeclaration : FuncDeclaration
 {
     this(Loc loc, Loc endloc)
 	{
-		assert(false);
-		super(loc, loc, null, STC.init, null);
+		super(loc, endloc, Id._postblit, STCundefined, null);
 	}
 	
     this(Loc loc, Loc endloc, Identifier id)