WooHoo me again ;)
I took out the following from the includes in the intern dir that still had it: -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif Kent -- mein@cs.umn.edu
This commit is contained in:
@@ -60,14 +60,9 @@
|
||||
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
|
||||
#ifndef GEN_LIST_H
|
||||
#define GEN_LIST_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class GEN_Link {
|
||||
public:
|
||||
GEN_Link() : m_next(0), m_prev(0) {}
|
||||
|
@@ -32,11 +32,6 @@
|
||||
#ifndef GEN_MAP_H
|
||||
#define GEN_MAP_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
template <class Key, class Value>
|
||||
class GEN_Map {
|
||||
private:
|
||||
|
@@ -32,10 +32,6 @@
|
||||
#ifndef INCLUDED_MT_CmMatrix4x4
|
||||
#define INCLUDED_MT_CmMatrix4x4
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* A 4x4 matrix. This is an OpenGl style matrix (column major) meaning
|
||||
* that the vector {m[0][0],m[0][1],m[0][2],m[0][3]} is the first column of
|
||||
|
@@ -46,10 +46,6 @@
|
||||
#ifndef MT_MATRIX3X3_H
|
||||
#define MT_MATRIX3X3_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <MT_assert.h>
|
||||
|
||||
#include "MT_Vector3.h"
|
||||
|
@@ -39,10 +39,6 @@
|
||||
#ifndef MT_MATRIX4X4_H
|
||||
#define MT_MATRIX4X4_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <MT_assert.h>
|
||||
|
||||
#include "MT_Vector4.h"
|
||||
|
@@ -46,10 +46,6 @@
|
||||
#ifndef MT_MINMAX_H
|
||||
#define MT_MINMAX_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
template <class T>
|
||||
inline const T& MT_min(const T& a, const T& b) {
|
||||
return b < a ? b : a;
|
||||
|
@@ -32,10 +32,6 @@
|
||||
#ifndef GEN_OPTIMIZE_H
|
||||
#define GEN_OPTIMIZE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef GEN_INLINED
|
||||
#define GEN_INLINE inline
|
||||
#else
|
||||
|
@@ -32,10 +32,6 @@
|
||||
#ifndef MT_PLANE3
|
||||
#define MT_PLANE3
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "MT_Tuple4.h"
|
||||
#include "MT_Point3.h"
|
||||
|
||||
|
@@ -46,10 +46,6 @@
|
||||
#ifndef MT_POINT2_H
|
||||
#define MT_POINT2_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "MT_Vector2.h"
|
||||
|
||||
class MT_Point2 : public MT_Vector2 {
|
||||
|
@@ -46,10 +46,6 @@
|
||||
#ifndef MT_POINT_H
|
||||
#define MT_POINT_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "MT_Vector3.h"
|
||||
|
||||
class MT_Point3 : public MT_Vector3 {
|
||||
|
@@ -46,10 +46,6 @@
|
||||
#ifndef MT_QUATERNION_H
|
||||
#define MT_QUATERNION_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <MT_assert.h>
|
||||
|
||||
#include "MT_Vector3.h"
|
||||
|
@@ -49,10 +49,6 @@
|
||||
#include <math.h>
|
||||
#include <float.h>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "MT_random.h"
|
||||
#include "NM_Scalar.h"
|
||||
|
||||
|
@@ -32,10 +32,6 @@
|
||||
#ifndef GEN_STREAM_H
|
||||
#define GEN_STREAM_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __CUSTOM_STREAM
|
||||
|
||||
class MT_OStream
|
||||
|
@@ -53,10 +53,6 @@
|
||||
#ifndef MT_TRANSFORM_H
|
||||
#define MT_TRANSFORM_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "MT_Point3.h"
|
||||
#include "MT_Matrix3x3.h"
|
||||
|
||||
|
@@ -46,10 +46,6 @@
|
||||
#ifndef MT_Tuple2_H
|
||||
#define MT_Tuple2_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "MT_Stream.h"
|
||||
#include "MT_Scalar.h"
|
||||
|
||||
|
@@ -46,10 +46,6 @@
|
||||
#ifndef MT_TUPLE3_H
|
||||
#define MT_TUPLE3_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "MT_Stream.h"
|
||||
#include "MT_Scalar.h"
|
||||
|
||||
|
@@ -46,10 +46,6 @@
|
||||
#ifndef MT_TUPLE4_H
|
||||
#define MT_TUPLE4_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "MT_Stream.h"
|
||||
#include "MT_Scalar.h"
|
||||
|
||||
|
@@ -46,10 +46,6 @@
|
||||
#ifndef MT_VECTOR2_H
|
||||
#define MT_VECTOR2_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <MT_assert.h>
|
||||
#include "MT_Tuple2.h"
|
||||
|
||||
|
@@ -46,10 +46,6 @@
|
||||
#ifndef MT_VECTOR3_H
|
||||
#define MT_VECTOR3_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <MT_assert.h>
|
||||
#include "MT_Tuple3.h"
|
||||
|
||||
|
@@ -46,10 +46,6 @@
|
||||
#ifndef MT_VECTOR4_H
|
||||
#define MT_VECTOR4_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <MT_assert.h>
|
||||
|
||||
#include "MT_Tuple4.h"
|
||||
|
@@ -32,10 +32,6 @@
|
||||
#ifndef MT_ASSERT_H
|
||||
#define MT_ASSERT_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef MT_NDEBUG
|
||||
|
||||
#define MT_assert(predicate) ((void)0)
|
||||
|
@@ -32,10 +32,6 @@
|
||||
#ifndef MT_RANDOM_H
|
||||
#define MT_RANDOM_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <limits.h>
|
||||
|
||||
#define MT_RAND_MAX ULONG_MAX
|
||||
|
@@ -30,13 +30,8 @@
|
||||
*/
|
||||
|
||||
#include <math.h>
|
||||
|
||||
#include <iostream>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
template <class T>
|
||||
class NM_Scalar {
|
||||
public:
|
||||
|
Reference in New Issue
Block a user