std.cfg: Removed duplicate configuration of std::swap().
This commit is contained in:
parent
c983151b9c
commit
d3a2a6d245
19
cfg/std.cfg
19
cfg/std.cfg
|
@ -6336,17 +6336,6 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
|||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- template< class T > void swap( T& a, T& b );-->
|
||||
<function name="std::swap">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="void"/>
|
||||
<arg nr="1">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
<arg nr="2">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- std::string std::ostringstream::str() const; -->
|
||||
<!-- std::string std::stringstream::str() const; -->
|
||||
<!-- @todo Implement the second version when function overloading is possible: -->
|
||||
|
@ -6626,8 +6615,12 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
|||
<function name="std::swap">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="void"/>
|
||||
<arg nr="1"/>
|
||||
<arg nr="2"/>
|
||||
<arg nr="1">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
<arg nr="2">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<function name="std::stack::pop,std::queue::pop">
|
||||
<noreturn>false</noreturn>
|
||||
|
|
Loading…
Reference in New Issue