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:
authorBastien Montagne <montagne29@wanadoo.fr>2017-05-30 12:35:09 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2017-05-30 12:35:31 +0300
commit47aedb97b699009f6e88f46ab6fb7bc25e299fde (patch)
tree4997992748b93717ac4c473c60f9cb54a9132b45
parent15692c8cfe5aac896227cfd4594e0a6f84df01b0 (diff)
Silence warning in RNA when building without fluidsim.
-rw-r--r--source/blender/makesrna/intern/rna_fluidsim.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_fluidsim.c b/source/blender/makesrna/intern/rna_fluidsim.c
index 078b61ad7df..8c3984e4b29 100644
--- a/source/blender/makesrna/intern/rna_fluidsim.c
+++ b/source/blender/makesrna/intern/rna_fluidsim.c
@@ -188,6 +188,7 @@ static void rna_DomainFluidSettings_memory_estimate_get(PointerRNA *ptr, char *v
static int rna_DomainFluidSettings_memory_estimate_length(PointerRNA *ptr)
{
#ifndef WITH_MOD_FLUID
+ UNUSED_VARS(ptr);
return 0;
#else
char value[32];