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:
authorKent Mein <mein@cs.umn.edu>2002-11-25 12:53:07 +0300
committerKent Mein <mein@cs.umn.edu>2002-11-25 12:53:07 +0300
commit0fbadc8eb7c93e10902cc4357a42dcd73c0a076b (patch)
tree66eca67171025b24578bda6cb5484a141d894a30 /intern/container
parentd44f2c6dcc8fbd38790166da79e930e6d79abd08 (diff)
Yes I did it again ;)
added the following 3 lines to everything in the intern dir: #ifdef HAVE_CONFIG_H #include <config.h> #endif Kent -- mein@cs.umn.edu
Diffstat (limited to 'intern/container')
-rw-r--r--intern/container/CTR_List.h5
-rw-r--r--intern/container/CTR_Map.h4
-rw-r--r--intern/container/CTR_TaggedIndex.h5
-rw-r--r--intern/container/CTR_TaggedSetOps.h6
-rw-r--r--intern/container/CTR_UHeap.h5
-rw-r--r--intern/container/intern/CTR_List.cpp4
6 files changed, 28 insertions, 1 deletions
diff --git a/intern/container/CTR_List.h b/intern/container/CTR_List.h
index 2ca2d60d0e7..23d82d40819 100644
--- a/intern/container/CTR_List.h
+++ b/intern/container/CTR_List.h
@@ -64,6 +64,11 @@
#ifndef CTR_LIST_H
#define CTR_LIST_H
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+
class CTR_Link {
public:
CTR_Link(
diff --git a/intern/container/CTR_Map.h b/intern/container/CTR_Map.h
index 8d4c94b4c01..cffbe20832c 100644
--- a/intern/container/CTR_Map.h
+++ b/intern/container/CTR_Map.h
@@ -33,6 +33,10 @@
#define CTR_MAP_H
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
template <class Key, class Value>
class CTR_Map {
private:
diff --git a/intern/container/CTR_TaggedIndex.h b/intern/container/CTR_TaggedIndex.h
index 87bc8a4315e..aa94f94403f 100644
--- a/intern/container/CTR_TaggedIndex.h
+++ b/intern/container/CTR_TaggedIndex.h
@@ -50,6 +50,11 @@
#include <functional>
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+
enum {
empty_tag = 0x0,
diff --git a/intern/container/CTR_TaggedSetOps.h b/intern/container/CTR_TaggedSetOps.h
index 6c550e6ff22..2696e644275 100644
--- a/intern/container/CTR_TaggedSetOps.h
+++ b/intern/container/CTR_TaggedSetOps.h
@@ -30,9 +30,13 @@
*/
#ifndef NAN_INCLUDED_LOD_TaggedSetOps_h
-
#define NAN_INCLUDED_LOD_TaggedSetOps_h
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+
#include "MEM_NonCopyable.h"
#include <vector>
diff --git a/intern/container/CTR_UHeap.h b/intern/container/CTR_UHeap.h
index c6321ea1abe..1f7c80fac2a 100644
--- a/intern/container/CTR_UHeap.h
+++ b/intern/container/CTR_UHeap.h
@@ -48,6 +48,11 @@
#define NAN_INCLUDED_CTR_UHeap_h
#include <vector>
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include "MEM_NonCopyable.h"
class CTR_UHeapable {
diff --git a/intern/container/intern/CTR_List.cpp b/intern/container/intern/CTR_List.cpp
index 2e8c1bb13d2..9cbb384c835 100644
--- a/intern/container/intern/CTR_List.cpp
+++ b/intern/container/intern/CTR_List.cpp
@@ -29,6 +29,10 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include "CTR_List.h"