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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2014-04-17 09:31:35 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2014-04-17 09:37:14 +0400
commit4219e44f1d89cfd6ccdf3adc0fd73e22ae7b6df3 (patch)
treec85bb208f3cad54a1a57d56dfc78d27f077427e6
parent1674a04488143149b19fda4985193dd8431fcac4 (diff)
Freestyle: removed unnecessary #include "FreestyleConfig.h".
-rw-r--r--source/blender/freestyle/intern/application/AppConfig.cpp1
-rw-r--r--source/blender/freestyle/intern/application/AppConfig.h1
-rw-r--r--source/blender/freestyle/intern/system/BaseObject.h2
-rw-r--r--source/blender/freestyle/intern/system/Exception.h2
-rw-r--r--source/blender/freestyle/intern/system/PseudoNoise.h1
-rw-r--r--source/blender/freestyle/intern/system/RandGen.h2
-rw-r--r--source/blender/freestyle/intern/system/StringUtils.h6
-rw-r--r--source/blender/freestyle/intern/system/TimeStamp.h2
-rw-r--r--source/blender/freestyle/intern/system/TimeUtils.h2
9 files changed, 1 insertions, 18 deletions
diff --git a/source/blender/freestyle/intern/application/AppConfig.cpp b/source/blender/freestyle/intern/application/AppConfig.cpp
index 967cb400241..cf7959ffaef 100644
--- a/source/blender/freestyle/intern/application/AppConfig.cpp
+++ b/source/blender/freestyle/intern/application/AppConfig.cpp
@@ -25,6 +25,7 @@
#include "AppConfig.h"
#include <iostream>
+#include "../system/FreestyleConfig.h"
#include "../system/StringUtils.h"
using namespace std;
diff --git a/source/blender/freestyle/intern/application/AppConfig.h b/source/blender/freestyle/intern/application/AppConfig.h
index 94ae0c3c348..ae1d96e06d8 100644
--- a/source/blender/freestyle/intern/application/AppConfig.h
+++ b/source/blender/freestyle/intern/application/AppConfig.h
@@ -30,7 +30,6 @@
#include <string>
#include <algorithm>
-#include "../system/FreestyleConfig.h"
#include "../system/Precision.h"
#ifdef WITH_CXX_GUARDEDALLOC
diff --git a/source/blender/freestyle/intern/system/BaseObject.h b/source/blender/freestyle/intern/system/BaseObject.h
index 60430143eac..8cabd9130b4 100644
--- a/source/blender/freestyle/intern/system/BaseObject.h
+++ b/source/blender/freestyle/intern/system/BaseObject.h
@@ -29,8 +29,6 @@
* \date 06/02/2002
*/
-#include "FreestyleConfig.h"
-
#ifdef WITH_CXX_GUARDEDALLOC
#include "MEM_guardedalloc.h"
#endif
diff --git a/source/blender/freestyle/intern/system/Exception.h b/source/blender/freestyle/intern/system/Exception.h
index 2111988a104..f605735ec40 100644
--- a/source/blender/freestyle/intern/system/Exception.h
+++ b/source/blender/freestyle/intern/system/Exception.h
@@ -28,8 +28,6 @@
* \date 10/01/2003
*/
-#include "FreestyleConfig.h"
-
#ifdef WITH_CXX_GUARDEDALLOC
#include "MEM_guardedalloc.h"
#endif
diff --git a/source/blender/freestyle/intern/system/PseudoNoise.h b/source/blender/freestyle/intern/system/PseudoNoise.h
index b0164a74a1a..602ad5293f0 100644
--- a/source/blender/freestyle/intern/system/PseudoNoise.h
+++ b/source/blender/freestyle/intern/system/PseudoNoise.h
@@ -28,7 +28,6 @@
* \date 16/06/2003
*/
-#include "FreestyleConfig.h"
#include "Precision.h"
#ifdef WITH_CXX_GUARDEDALLOC
diff --git a/source/blender/freestyle/intern/system/RandGen.h b/source/blender/freestyle/intern/system/RandGen.h
index 7621601a635..d39b4f95bbf 100644
--- a/source/blender/freestyle/intern/system/RandGen.h
+++ b/source/blender/freestyle/intern/system/RandGen.h
@@ -30,8 +30,6 @@
// TODO Check whether we could replace this with BLI rand stuff...
-#include "FreestyleConfig.h"
-
#include "../system/Precision.h"
#ifdef WITH_CXX_GUARDEDALLOC
diff --git a/source/blender/freestyle/intern/system/StringUtils.h b/source/blender/freestyle/intern/system/StringUtils.h
index 9aa26772d55..77b543c7886 100644
--- a/source/blender/freestyle/intern/system/StringUtils.h
+++ b/source/blender/freestyle/intern/system/StringUtils.h
@@ -34,15 +34,9 @@
#include <string>
#include <vector>
-#include "FreestyleConfig.h"
-
-//soc
extern "C" {
-
#include "BKE_utildefines.h"
-
#include "BLI_blenlib.h"
-
}
using namespace std;
diff --git a/source/blender/freestyle/intern/system/TimeStamp.h b/source/blender/freestyle/intern/system/TimeStamp.h
index c2b45630bd1..ccf370ad228 100644
--- a/source/blender/freestyle/intern/system/TimeStamp.h
+++ b/source/blender/freestyle/intern/system/TimeStamp.h
@@ -28,8 +28,6 @@
* \date 12/12/2002
*/
-#include "FreestyleConfig.h"
-
#ifdef WITH_CXX_GUARDEDALLOC
#include "MEM_guardedalloc.h"
#endif
diff --git a/source/blender/freestyle/intern/system/TimeUtils.h b/source/blender/freestyle/intern/system/TimeUtils.h
index 6fe8b0e7431..2d14adc5912 100644
--- a/source/blender/freestyle/intern/system/TimeUtils.h
+++ b/source/blender/freestyle/intern/system/TimeUtils.h
@@ -30,8 +30,6 @@
#include <time.h>
-#include "FreestyleConfig.h"
-
#ifdef WITH_CXX_GUARDEDALLOC
#include "MEM_guardedalloc.h"
#endif