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>2010-04-08 03:28:29 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-04-08 03:28:29 +0400
commit7ed7524c91a07756466cc235d476daf0c7100b72 (patch)
treeac2dba733bec9c9e47da957bb0f8abec838f67a0 /source/blender/freestyle/intern/python/BPy_IntegrationType.h
parentf85bcac8ae73f763bce29916a616b9b713d984b8 (diff)
Got rid of a number of compiler warnings with regard to redefinitions
of _POSIX_C_SOURCE and _XOPEN_SOURCE. There are no functional changes. Tested with GCC 4.4.1 on Ubuntu 9.10 (karmic).
Diffstat (limited to 'source/blender/freestyle/intern/python/BPy_IntegrationType.h')
-rw-r--r--source/blender/freestyle/intern/python/BPy_IntegrationType.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/freestyle/intern/python/BPy_IntegrationType.h b/source/blender/freestyle/intern/python/BPy_IntegrationType.h
index 176d8750c45..f15ae8309e3 100644
--- a/source/blender/freestyle/intern/python/BPy_IntegrationType.h
+++ b/source/blender/freestyle/intern/python/BPy_IntegrationType.h
@@ -1,6 +1,8 @@
#ifndef FREESTYLE_PYTHON_INTEGRATIONTYPE_H
#define FREESTYLE_PYTHON_INTEGRATIONTYPE_H
+#include <Python.h>
+
#include "../view_map/Interface1D.h"
#ifdef __cplusplus
@@ -9,8 +11,6 @@ extern "C" {
///////////////////////////////////////////////////////////////////////////////////////////
-#include <Python.h>
-
extern PyTypeObject IntegrationType_Type;
#define BPy_IntegrationType_Check(v) ( PyObject_IsInstance( (PyObject *) v, (PyObject *) &IntegrationType_Type) )