<div dir="ltr">Hi,<br><br>As discussed on the latest VDD I added .real (was .strtod) to the std vmod.<br>There are 3 remaining conversions from our list:<br><br>$Function REAL time2real(TIME)<br>$Function INT time2integer(TIME)<br>
$Function TIME real2time(REAL)<br><br>They are nothing more than returning their input:<br><br>VCL_TIME __match_proto__(td_std_real2time)<br>vmod_real2time(const struct vrt_ctx *ctx, VCL_REAL r)<br>{<br>        (void)ctx;<br>
        return (r);<br>}<br><br>Before I go ahead and add them are we happy with this or should we consider a different route like automagic promotion for certain types?<br><br>f.-<br></div>