comparison lphobos/object.d @ 662:88e23f8c2354

Applied downs' latest Phobos patch
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Mon, 06 Oct 2008 21:40:33 +0200
parents 373489eeaf90
children
comparison
equal deleted inserted replaced
661:99f32e967746 662:88e23f8c2354
79 uint flags(); 79 uint flags();
80 // 1: // has possible pointers into GC memory 80 // 1: // has possible pointers into GC memory
81 OffsetTypeInfo[] offTi(); 81 OffsetTypeInfo[] offTi();
82 } 82 }
83 83
84 pragma(no_typeinfo)
84 class TypeInfo_Typedef : TypeInfo 85 class TypeInfo_Typedef : TypeInfo
85 { 86 {
86 TypeInfo base; 87 TypeInfo base;
87 char[] name; 88 char[] name;
88 void[] m_init; 89 void[] m_init;
203 Error next; 204 Error next;
204 205
205 this(string msg); 206 this(string msg);
206 this(string msg, Error next); 207 this(string msg, Error next);
207 } 208 }
209