Moved an external variable out of an ifdef block.

This commit is contained in:
Harry Moffat 2008-09-04 17:03:42 +00:00
parent a4e8f2f972
commit 5c82a4d742
2 changed files with 0 additions and 4 deletions

View file

@ -32,11 +32,9 @@ using namespace std;
#include "stringUtils.h"
#include "MultiPhase.h"
#ifdef DEBUG_MODE
#include "stdio.h"
int Cantera::ChemEquil_print_lvl = 0;
//static char sbuf[1024];
#endif
#ifndef MIN
#define MIN(x,y) (( (x) < (y) ) ? (x) : (y))
#endif

View file

@ -247,9 +247,7 @@ namespace Cantera {
};
#ifdef DEBUG_MODE
extern int ChemEquil_print_lvl;
#endif
}