comparison dwt/dwthelper/Runnable.d @ 10:30a762abda2a

Revert automatic changes from dwt/internal and dwt/dwthelper. Excluded dwt/internal/image and theme.
author Frank Benoit <benoit@tionex.de>
date Thu, 28 Aug 2008 12:31:10 +0200
parents e831403a80a9
children
comparison
equal deleted inserted replaced
9:e76aa0b07480 10:30a762abda2a
13 13
14 } 14 }
15 15
16 class _DgRunnableT(Dg,T...) : Runnable { 16 class _DgRunnableT(Dg,T...) : Runnable {
17 17
18 alias ParameterTupleOf!cast(Dg) DgArgs; 18 alias ParameterTupleOf!(Dg) DgArgs;
19 static assert( is(DgArgs == Tuple!cast(T)), 19 static assert( is(DgArgs == Tuple!(T)),
20 "Delegate args not correct" ); 20 "Delegate args not correct" );
21 21
22 Dg dg; 22 Dg dg;
23 T t; 23 T t;
24 24