comparison dmd/Type.d @ 16:5c9b78899f5d

Implemented methods for Tuples, fixed some linking issues.
author Robert Clipsham <robert@octarineparrot.com>
date Sun, 04 Apr 2010 22:41:11 +0100
parents 2cc604139636
children 1628b221808d
comparison
equal deleted inserted replaced
15:da741eed6c00 16:5c9b78899f5d
711 * Name mangling. 711 * Name mangling.
712 * Input: 712 * Input:
713 * flag 0x100 do not do const/invariant 713 * flag 0x100 do not do const/invariant
714 */ 714 */
715 void toDecoBuffer(OutBuffer buf, int flag = 0) 715 void toDecoBuffer(OutBuffer buf, int flag = 0)
716 { 716 { if( buf is null )asm { int 3; }
717 if (flag != mod && flag != 0x100) 717 if (flag != mod && flag != 0x100)
718 { 718 {
719 if (mod & MOD.MODshared) 719 if (mod & MOD.MODshared)
720 buf.writeByte('O'); 720 buf.writeByte('O');
721 721