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:
authorHans Goudey <h.goudey@me.com>2021-04-27 01:03:06 +0300
committerHans Goudey <h.goudey@me.com>2021-04-27 01:03:06 +0300
commit676ef58a891508ce9c21a5a098d2da73b1523a61 (patch)
treefbcde8152f6786b67fb94f839040e96aa7465e6e /source/blender/modifiers
parentcb3ea6636eb158ea930a2161fb907f27cb924e8f (diff)
Cleanup: Fix unused variable warning in lite build
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_volume_displace.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_volume_displace.cc b/source/blender/modifiers/intern/MOD_volume_displace.cc
index 6a148e824fa..af4b31d6bfc 100644
--- a/source/blender/modifiers/intern/MOD_volume_displace.cc
+++ b/source/blender/modifiers/intern/MOD_volume_displace.cc
@@ -305,7 +305,7 @@ static void displace_volume(ModifierData *md, const ModifierEvalContext *ctx, Vo
}
#else
- UNUSED_VARS(md, ctx);
+ UNUSED_VARS(md, volume, ctx);
BKE_modifier_set_error(ctx->object, md, "Compiled without OpenVDB");
#endif
}