std.cfg: Added min, max functions to std.cfg.

This commit is contained in:
orbitcowboy 2015-12-18 16:09:26 +01:00
parent 4a3c61f031
commit 4c60c2eaa5
1 changed files with 22 additions and 0 deletions

View File

@ -3840,6 +3840,28 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
<not-uninit/>
</arg>
</function>
<!-- template <class T> const T& min(const T& a, const T& b); -->
<function name="min,std::min">
<noreturn>false</noreturn>
<leak-ignore/>
<arg nr="1">
<not-uninit/>
</arg>
<arg nr="2">
<not-uninit/>
</arg>
</function>
<!-- template <class T> const T& max(const T& a, const T& b); -->
<function name="max,std::max">
<noreturn>false</noreturn>
<leak-ignore/>
<arg nr="1">
<not-uninit/>
</arg>
<arg nr="2">
<not-uninit/>
</arg>
</function>
<!-- /*unspecified*/ setiosflags(ios_base::fmtflags mask); -->
<function name="setiosflags,std::setiosflags">
<noreturn>false</noreturn>