Changed old to new style headers
This commit is contained in:
parent
de704473eb
commit
15194b2721
4 changed files with 10 additions and 9 deletions
|
|
@ -19,8 +19,6 @@
|
|||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
//#include <vector>
|
||||
//#include <math.h>
|
||||
|
||||
#include "MultiJac.h"
|
||||
using namespace std;
|
||||
|
|
|
|||
|
|
@ -23,13 +23,14 @@
|
|||
using namespace std;
|
||||
|
||||
#include "MultiNewton.h"
|
||||
#include <stdio.h>
|
||||
#include <math.h>
|
||||
|
||||
#include "ctexceptions.h"
|
||||
#include "vec_functions.h"
|
||||
#include "stringUtils.h"
|
||||
#include <time.h>
|
||||
|
||||
#include <cstdio>
|
||||
#include <cmath>
|
||||
#include <ctime>
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
|
|
|||
|
|
@ -11,11 +11,12 @@
|
|||
#include "Sim1D.h"
|
||||
#include "MultiJac.h"
|
||||
|
||||
#include <cstdlib>
|
||||
|
||||
using namespace std;
|
||||
|
||||
namespace Cantera {
|
||||
|
||||
|
||||
static void sim1D_drawline() {
|
||||
string s(78,'.');
|
||||
s += '\n';
|
||||
|
|
@ -232,7 +233,7 @@ namespace Cantera {
|
|||
throw CanteraError("Sim1D::newtonSolve","no solution found");
|
||||
else {
|
||||
writelog(string("ERROR: solve returned m = ") + int2str(m) + "\n");
|
||||
exit(-1);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,10 +1,11 @@
|
|||
/*
|
||||
* $Id$
|
||||
*/
|
||||
#include "stdio.h"
|
||||
#include "math.h"
|
||||
#include "PureFluid.h"
|
||||
#include <new>
|
||||
#include <cstdio>
|
||||
#include <cmath>
|
||||
|
||||
using namespace std;
|
||||
using namespace Cantera;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue