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:
authorJanne Karhu <jhkarh@gmail.com>2011-01-10 05:40:24 +0300
committerJanne Karhu <jhkarh@gmail.com>2011-01-10 05:40:24 +0300
commitd9c6f51ee25e4c3d56a9e06fb8e544f230174744 (patch)
tree9368fbf812fd9428850988b405786d51d2e8b49a /source/blender/blenkernel/BKE_pointcache.h
parent83806d40429f3c847a3265cdb1cfe20bf6b08c3d (diff)
Compiler warning fixes for the same point cache things Joshua tried to fix earlier, don't know why I didn't notice these before.
Diffstat (limited to 'source/blender/blenkernel/BKE_pointcache.h')
-rw-r--r--source/blender/blenkernel/BKE_pointcache.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/source/blender/blenkernel/BKE_pointcache.h b/source/blender/blenkernel/BKE_pointcache.h
index a4ce46409a1..c8e967e8a9a 100644
--- a/source/blender/blenkernel/BKE_pointcache.h
+++ b/source/blender/blenkernel/BKE_pointcache.h
@@ -32,7 +32,6 @@
#include "DNA_ID.h"
#include "DNA_object_force.h"
#include "DNA_boid_types.h"
-#include "DNA_particle_types.h"
#include <stdio.h> /* for FILE */
/* Point cache clearing option, for BKE_ptcache_id_clear, before
@@ -100,27 +99,6 @@ typedef struct PTCacheData {
struct BoidData boids;
} PTCacheData;
-static char *ptcache_datastruct[] = {
- "", // BPHYS_DATA_INDEX
- "", // BPHYS_DATA_LOCATION
- "", // BPHYS_DATA_VELOCITY
- "", // BPHYS_DATA_ROTATION
- "", // BPHYS_DATA_AVELOCITY / BPHYS_DATA_XCONST */
- "", // BPHYS_DATA_SIZE:
- "", // BPHYS_DATA_TIMES:
- "BoidData" // case BPHYS_DATA_BOIDS:
-};
-
-static char *ptcache_extra_datastruct[] = {
- "",
- "ParticleSpring"
-};
-
-static int ptcache_extra_datasize[] = {
- 0,
- sizeof(ParticleSpring)
-};
-
typedef struct PTCacheFile {
FILE *fp;