Skip to content
Snippets Groups Projects
Commit 4aaaecc1 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

fix compile

parent a97dd46a
No related branches found
No related tags found
No related merge requests found
...@@ -18,6 +18,11 @@ ...@@ -18,6 +18,11 @@
#include "MTetrahedron.h" #include "MTetrahedron.h"
#include "Context.h" #include "Context.h"
#include "OS.h" #include "OS.h"
#if !defined(HAVE_NO_STDINT_H)
#include <stdint.h>
#elif defined(HAVE_NO_INTPTR_T)
typedef unsigned long uintptr_t;
#endif
namespace tetgenBR namespace tetgenBR
{ {
...@@ -83,6 +88,7 @@ static double orient4d(double*, double *, double *, double *, double *, ...@@ -83,6 +88,7 @@ static double orient4d(double*, double *, double *, double *, double *,
double, double, double, double, double){ return 0.; } double, double, double, double, double){ return 0.; }
static int clock(){ return 0; } static int clock(){ return 0; }
#define clock_t int #define clock_t int
#define uintptr_t long
#include "tetgenBR.h" #include "tetgenBR.h"
#include "tetgenBR.cxx" #include "tetgenBR.cxx"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment