I am using ver 1.8.1.1 on Windows 7 Pro

With the following function declaration, the first parameter's
precondition is not formatted as part of the parameter;s documentaion.

int Test(
        UINT8 InVal,    ///< [in] Input value for function under test. @pre 
0..150
        char  OutFormat ///< [in] OutFormat Format for parsing OutPort string.
        )

Resulting HTML:

<dl class="params"><dt>Parameters:</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td
class="paramname">InVal</td><td>Input value for function under test.
</td></tr>
  </table>
  </dd>
</dl>
<dl class="section pre"><dt>Precondition:</dt><dd>0..150 </dd></dl>
<dl class="params"><dt>Parameters:</dt><dd>

I expected something like:

<dl class="params"><dt>Parameters:</dt><dd>
  <table class="params">
    <tr><td class="paramdir">[in]</td><td
class="paramname">InVal</td><td>Input value for function under test.
</td></tr>
    <tr><td class="section pre" colspan=2>Precondition:</td></tr>
    <tr><td></td><td>0..150 </td></tr>
  </table>
  </dd>
</dl>
<dl class="params"><dt>Parameters:</dt><dd>

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

Reply via email to