diff dmd/ArrayTypes.d @ 94:3a0b150c9841

Objects -> Vector!Object iteration 1
author Eldar Insafutdinov <e.insafutdinov@gmail.com>
date Mon, 30 Aug 2010 23:00:34 +0100
parents be2ab491772e
children 3482c73a991b
line wrap: on
line diff
--- a/dmd/ArrayTypes.d	Mon Aug 30 22:50:30 2010 +0200
+++ b/dmd/ArrayTypes.d	Mon Aug 30 23:00:34 2010 +0100
@@ -12,7 +12,8 @@
 
 //class Dsymbols : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }
 
-class Objects : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }
+alias Vector!Object Objects;
+//class Objects : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }
 
 class Arguments : Array { final typeof(this) copy() { auto a = new typeof(this); copyTo(a); return a; } }