Moved some #includes to the top of their respective files

This commit is contained in:
Ray Speth 2012-04-12 15:28:24 +00:00
parent ba8c814814
commit bf5dfeaa97
2 changed files with 4 additions and 6 deletions

View file

@ -9,6 +9,10 @@
#ifndef SPECIES_THERMO_TYPES_H #ifndef SPECIES_THERMO_TYPES_H
#define SPECIES_THERMO_TYPES_H #define SPECIES_THERMO_TYPES_H
#include "cantera/base/ct_defs.h"
#include "cantera/base/global.h"
#include "cantera/base/stringUtils.h"
//! Constant Cp //! Constant Cp
#define CONSTANT_CP 1 #define CONSTANT_CP 1
@ -68,11 +72,6 @@
//! A general object is called with the pressure set at the reference state. //! A general object is called with the pressure set at the reference state.
#define PDSS_TYPE 37 #define PDSS_TYPE 37
#include "cantera/base/ct_defs.h"
#include "cantera/base/stringUtils.h"
#include "cantera/base/global.h"
namespace Cantera namespace Cantera
{ {

View file

@ -62,7 +62,6 @@ static boost::mutex xml_mutex;
#endif #endif
#if defined(BOOST_HAS_WINTHREADS) #if defined(BOOST_HAS_WINTHREADS)
#include <windows.h>
typedef unsigned int cthreadId_t ; typedef unsigned int cthreadId_t ;
class thread_equal class thread_equal
{ {