#8243: Changed order of includes. Moved mathlib include at first place.

This commit is contained in:
orbitcowboy 2017-10-14 16:30:10 +02:00
parent b678f3c4c4
commit db787369b9
2 changed files with 5 additions and 6 deletions

View File

@ -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>

View File

@ -17,11 +17,10 @@
*/
#include "mathlib.h"
#include "errorlogger.h"
#include "utils.h"
#include "mathlib.h"
#include <cctype>
#include <cmath>
#include <cstdlib>