#8243: Changed order of includes. Moved mathlib include at first place.
This commit is contained in:
parent
b678f3c4c4
commit
db787369b9
|
@ -5867,28 +5867,28 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
|||
<!-- bool good() const; -->
|
||||
<function name="std::ios::good,std::ios_base::good,std::ostream::good,std::ofstream::good">
|
||||
<noreturn>false</noreturn>
|
||||
<use-retval/>
|
||||
<use-retval/>
|
||||
<returnValue type="bool"/>
|
||||
<const/>
|
||||
</function>
|
||||
<!-- bool eof() const; -->
|
||||
<function name="std::ios::eof,std::ios_base::eof,std::ostream::eof,std::ofstream::eof">
|
||||
<noreturn>false</noreturn>
|
||||
<use-retval/>
|
||||
<use-retval/>
|
||||
<returnValue type="bool"/>
|
||||
<const/>
|
||||
</function>
|
||||
<!-- bool fail() const; -->
|
||||
<function name="std::ios::fail,std::ios_base::fail,std::ostream::fail,std::ofstream::fail">
|
||||
<noreturn>false</noreturn>
|
||||
<use-retval/>
|
||||
<use-retval/>
|
||||
<returnValue type="bool"/>
|
||||
<const/>
|
||||
</function>
|
||||
<!-- bool bad() const; -->
|
||||
<function name="std::ios::bad,std::ios_base::bad,std::ostream::bad,std::ofstream::bad">
|
||||
<noreturn>false</noreturn>
|
||||
<use-retval/>
|
||||
<use-retval/>
|
||||
<returnValue type="bool"/>
|
||||
<const/>
|
||||
</function>
|
||||
|
|
|
@ -17,11 +17,10 @@
|
|||
*/
|
||||
|
||||
|
||||
#include "mathlib.h"
|
||||
#include "errorlogger.h"
|
||||
#include "utils.h"
|
||||
|
||||
#include "mathlib.h"
|
||||
|
||||
#include <cctype>
|
||||
#include <cmath>
|
||||
#include <cstdlib>
|
||||
|
|
Loading…
Reference in New Issue