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:
authorJacques Lucke <jacques@blender.org>2022-04-28 13:21:39 +0300
committerJacques Lucke <jacques@blender.org>2022-04-28 13:21:39 +0300
commite8102aea13f510daa114eadee754803c380736a9 (patch)
tree773a9725c856befbcf0c4de817cfad8939289d4a /source/blender/blenlib
parent37ede15e639c6190ba282985f586aefe14a4a348 (diff)
Cleanup: fix warning due to unused variable
This warning exists in gcc 9.4.0, apparently because the variable is not used in some `constexpr` code paths.
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/BLI_devirtualize_parameters.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_devirtualize_parameters.hh b/source/blender/blenlib/BLI_devirtualize_parameters.hh
index 07458906756..77b6223f310 100644
--- a/source/blender/blenlib/BLI_devirtualize_parameters.hh
+++ b/source/blender/blenlib/BLI_devirtualize_parameters.hh
@@ -154,7 +154,8 @@ template<typename Fn, typename... SourceTypes> class Devirtualizer {
/* Non-devirtualized parameter type. */
using SourceType = type_at_index<I>;
/* A bit flag indicating what devirtualizations are allowed in this step. */
- constexpr DeviMode allowed_modes = DeviModeSequence<AllowedModes...>::template at_index<I>();
+ [[maybe_unused]] constexpr DeviMode allowed_modes =
+ DeviModeSequence<AllowedModes...>::template at_index<I>();
/* Handle #VArray types. */
if constexpr (is_VArray_v<SourceType>) {