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:
authorCampbell Barton <ideasman42@gmail.com>2013-04-04 15:47:48 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-04 15:47:48 +0400
commit69035e183ba91877489e8aae2d0425b13813ac18 (patch)
tree10d5428f87f6450e677a608f801ffa5f47a8e42e /source/blender/blenkernel/intern/bpath.c
parent215033506a3bcff0e325fb0ad6053e5484bf0a14 (diff)
quiet warnings (building with -Werror)
Diffstat (limited to 'source/blender/blenkernel/intern/bpath.c')
-rw-r--r--source/blender/blenkernel/intern/bpath.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/bpath.c b/source/blender/blenkernel/intern/bpath.c
index 852dcc6216c..806b944572f 100644
--- a/source/blender/blenkernel/intern/bpath.c
+++ b/source/blender/blenkernel/intern/bpath.c
@@ -580,16 +580,19 @@ void BKE_bpath_traverse_id(Main *bmain, ID *id, BPathVisitor visit_cb, const int
}
SEQ_END
}
+ /* TODO, keep this or not? - campbell */
+#if 0
{
SceneRenderLayer *srl = scene->r.layers.first;
for(; srl; srl = srl->next) {
- FreestyleModuleConfig* module = srl->freestyleConfig.modules.first;
+ FreestyleModuleConfig *module = srl->freestyleConfig.modules.first;
for (; module; module = module->next) {
rewrite_path_fixed(module->module_path, visit_cb, absbase, bpath_user_data);
}
}
}
+#endif
break;
}
case ID_ME: