Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Want <cwant@ualberta.ca>2004-11-24 02:04:30 +0300
committerChris Want <cwant@ualberta.ca>2004-11-24 02:04:30 +0300
commit12307b358dfc4ee9470418f0a87da34a45623fc9 (patch)
tree292f857231d8b0895216f1b067556d6ac5b9c923 /extern/solid/src
parent0883f682639e0a2043258a2222fc3bdd3a8aa0eb (diff)
Making the C++ stuff work for the MipsPro 7.3 compiler.
Kester might want to check this for correctness Kent might want to test if this breaks the Sun compile.
Diffstat (limited to 'extern/solid/src')
-rwxr-xr-xextern/solid/src/convex/DT_Array.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/extern/solid/src/convex/DT_Array.h b/extern/solid/src/convex/DT_Array.h
index 603ebe978f1..1694f884e53 100755
--- a/extern/solid/src/convex/DT_Array.h
+++ b/extern/solid/src/convex/DT_Array.h
@@ -24,7 +24,11 @@
#ifndef DT_ARRAY_H
#define DT_ARRAY_H
+#if defined (__sgi)
+#include <assert.h>
+#else
#include <cassert>
+#endif
template <typename Data, typename Size = size_t>
class DT_Array {