Thread overview
Ddoc and templates
Oct 16, 2005
markus_kranz
Oct 16, 2005
Walter Bright
Oct 17, 2005
markus_kranz
October 16, 2005
Hi!

# interface Foo(T) {
#   /**
#    * blabla...
#    */
#   T bar();
# }

Is there a reason why the html file generated by Ddoc (dmd -c -D foo.d) does not contain the comment specified for method bar?

Without templates, everything works perfectly:

# interface IntFoo {
#   /**
#    * blabla...
#    */
#   int bar();
# }

Is there a way to get a similar result for the template version?

Best regards,
Markus


October 16, 2005
<markus_kranz@gmx.net> wrote in message news:diu3rp$25ne$1@digitaldaemon.com...
> Is there a reason why the html file generated by Ddoc (dmd -c -D foo.d)
does not
> contain the comment specified for method bar?

Looks like a problem with Ddoc.


October 17, 2005
In article <diu80o$291d$2@digitaldaemon.com>, Walter Bright says...
>
><markus_kranz@gmx.net> wrote in message news:diu3rp$25ne$1@digitaldaemon.com...
>> Is there a reason why the html file generated by Ddoc (dmd -c -D foo.d) does not contain the comment specified for method bar?
>
>Looks like a problem with Ddoc.

Thanks for your quick answer.
And thank you very much for the excellent job you've done with D.

Best regards,
Markus