Differences From Artifact [41ba420d0c49ce8d]:
- File
src/util.d
- 2012-07-15 07:02:32 - part of checkin [8acc8e6c78] on branch trunk - Prioritize distant lambda. (user: kinaba) [annotate]
- 2012-07-15 12:14:10 - part of checkin [e02668367d] on branch trunk - Revert redesign in the trunk. (user: kinaba) [annotate]
To Artifact [1a5a3d16d8e421dc]:
- File
src/util.d
- 2013-03-16 01:15:25 - part of checkin [d95246eada] on branch trunk - Make it build on dmd 2.062. (user: kinaba) [annotate]
18 int cnt = 0; 18 int cnt = 0;
19 foreach(e; a) 19 foreach(e; a)
20 if(e == v) 20 if(e == v)
21 ++cnt; 21 ++cnt;
22 return cnt; 22 return cnt;
23 } 23 }
24 24
25 void application_exit() | 25 void application_exit() nothrow
26 { 26 {
27 std.c.stdlib.exit(0); 27 std.c.stdlib.exit(0);
28 } 28 }
29 29
30 template DeriveCreate() 30 template DeriveCreate()
31 { 31 {
32 this(TS...)(TS params) 32 this(TS...)(TS params)