forward variadic arguments

Frank Benoit keinfarbton at nospam.xyz
Thu Jun 15 08:11:23 PDT 2006


 void execSql( char[] aSql, ... ){
  char[] sql = std.string.format( aSql, _arguments, _argptr );
  database.exec( sql );
 }

The forwarding of all arguments to format() seams not to work.
how can I do this?




More information about the Digitalmars-d-learn mailing list