use <...> for system headers

This commit is contained in:
Benoit Jacob 2009-06-24 16:35:02 +02:00
parent a44f7cf440
commit 96dca681b0

View File

@ -17,7 +17,7 @@
#ifdef EIGEN_CHOLMOD_SUPPORT #ifdef EIGEN_CHOLMOD_SUPPORT
extern "C" { extern "C" {
#include "cholmod.h" #include <cholmod.h>
} }
#endif #endif
@ -27,7 +27,7 @@
#define finite #define finite
#define isinf #define isinf
extern "C" { extern "C" {
#include "taucs.h" #include <taucs.h>
} }
#undef isnan #undef isnan
#undef finite #undef finite
@ -46,27 +46,27 @@
#ifdef EIGEN_SUPERLU_SUPPORT #ifdef EIGEN_SUPERLU_SUPPORT
typedef int int_t; typedef int int_t;
#include "slu_Cnames.h" #include <slu_Cnames.h>
#include "supermatrix.h" #include <supermatrix.h>
#include "slu_util.h" #include <slu_util.h>
namespace SuperLU_S { namespace SuperLU_S {
#include "slu_sdefs.h" #include <slu_sdefs.h>
} }
namespace SuperLU_D { namespace SuperLU_D {
#include "slu_ddefs.h" #include <slu_ddefs.h>
} }
namespace SuperLU_C { namespace SuperLU_C {
#include "slu_cdefs.h" #include <slu_cdefs.h>
} }
namespace SuperLU_Z { namespace SuperLU_Z {
#include "slu_zdefs.h" #include <slu_zdefs.h>
} }
namespace Eigen { struct SluMatrix; } namespace Eigen { struct SluMatrix; }
#endif #endif
#ifdef EIGEN_UMFPACK_SUPPORT #ifdef EIGEN_UMFPACK_SUPPORT
#include "umfpack.h" #include <umfpack.h>
#endif #endif
namespace Eigen { namespace Eigen {