std.cfg: Added min, max functions to std.cfg.
This commit is contained in:
parent
4a3c61f031
commit
4c60c2eaa5
22
cfg/std.cfg
22
cfg/std.cfg
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue