<div dir="ltr">Thanks ! I'll try to build FPDoc from trunk and test. </div><div class="gmail_extra"><br><div class="gmail_quote">2016-10-28 12:11 GMT+02:00 Michael Van Canneyt <span dir="ltr"><<a href="mailto:michael@freepascal.org" target="_blank">michael@freepascal.org</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5"><br>
<br>
On Fri, 28 Oct 2016, Yann Mérignac wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi all,<br>
<br>
While generating documentation for one of my projects I ran into a bug in<br>
fpdoc. It crashes on declarations like this one:<br>
<br>
-------<br>
type<br>
 TObjectBlob = class(specialize TGenBlob<TObject>)<br>
   ...<br>
 end;<br>
-------<br>
<br>
I reported the bug here: <a href="http://bugs.freepascal.org/view.php?id=30810" rel="noreferrer" target="_blank">http://bugs.freepascal.org/vie<wbr>w.php?id=30810</a><br>
<br>
Now, I am looking for a workaround. I know that something like this can<br>
work both with FPC and FPDoc:<br>
<br>
-------<br>
type<br>
{$ifdef FPDOC}<br>
 TIntermediate = specialize TGenBlob<TObject>;<br>
 TObjectBlob = class(TIntermediate)<br>
{$else}<br>
 TObjectBlob = class(specialize TGenBlob<TObject>)<br>
{$endif}<br>
   function ToString : String; override;<br>
 end;<br>
-------<br>
<br>
Is there a way to tell FPDoc to parse only the first part of $ifdef ?<br>
<br>
I have tried "fpdoc --input='-dFPDOC' --project=fpdocprj.xml --format=html"<br>
but it does not work.<br>
</blockquote>
<br></div></div>
It should work in trunk.<span class="HOEnZb"><font color="#888888"><br>
<br>
Michael.</font></span><br>______________________________<wbr>_________________<br>
fpc-pascal maillist  -  <a href="mailto:fpc-pascal@lists.freepascal.org">fpc-pascal@lists.freepascal.<wbr>org</a><br>
<a href="http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal" rel="noreferrer" target="_blank">http://lists.freepascal.org/<wbr>cgi-bin/mailman/listinfo/fpc-<wbr>pascal</a><br></blockquote></div><br></div>