comparison dmd/DebugCondition.d @ 129:010eb8f0e18d

further work on dmd test suite
author korDen
date Sun, 05 Sep 2010 15:32:22 +0400
parents e28b18c23469
children e3afd1303184
comparison
equal deleted inserted replaced
128:e6e542f37b94 129:010eb8f0e18d
50 else if (findCondition(global.params.debugids, ident)) 50 else if (findCondition(global.params.debugids, ident))
51 inc = 1; 51 inc = 1;
52 else 52 else
53 { 53 {
54 if (!mod.debugidsNot) 54 if (!mod.debugidsNot)
55 mod.debugidsNot = new Array(); 55 mod.debugidsNot = new Vector!string();
56 56
57 mod.debugidsNot.push(cast(void*)new String(ident.toChars())); 57 mod.debugidsNot.push(ident.toChars());
58 } 58 }
59 } 59 }
60 else if (level <= global.params.debuglevel || level <= mod.debuglevel) 60 else if (level <= global.params.debuglevel || level <= mod.debuglevel)
61 inc = 1; 61 inc = 1;
62 } 62 }