std.cfg: Fix copy&paste error or typo (#1033)
* Fixed copy&paste error or typo It should be std::sinf here. std::sinl is described directly in the next function description and does not make sense here because of the return type. * std.cfg: Fix another copy&paste error or typo It should be std::tanf here.
This commit is contained in:
parent
c7c9b3cd65
commit
6bd524baaf
|
@ -272,7 +272,7 @@
|
|||
</arg>
|
||||
</function>
|
||||
<!-- float sinf(float f); -->
|
||||
<function name="sinf,std::sinl">
|
||||
<function name="sinf,std::sinf">
|
||||
<use-retval/>
|
||||
<pure/>
|
||||
<returnValue type="float"/>
|
||||
|
@ -441,7 +441,7 @@
|
|||
</arg>
|
||||
</function>
|
||||
<!-- float tanf(float x); -->
|
||||
<function name="tanf,std::tanl">
|
||||
<function name="tanf,std::tanf">
|
||||
<use-retval/>
|
||||
<pure/>
|
||||
<returnValue type="float"/>
|
||||
|
|
Loading…
Reference in New Issue