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:
authorJulian Eisel <julian@blender.org>2021-11-03 19:28:52 +0300
committerJulian Eisel <julian@blender.org>2021-11-03 19:28:52 +0300
commitde2988ea1bb8692ec35e9e61d55e150ebf543d53 (patch)
treea42b1e61afff3bc4ff149296b281988288b6141e /source/blender/blenlib
parentdebf4b70db81cff0dc22dc018c84cdcfd3eedbb7 (diff)
Cleanup: Remove effect-less const
Using `const` on an enum type returned by value doesn't have an effect.
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/BLI_serialize.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_serialize.hh b/source/blender/blenlib/BLI_serialize.hh
index 088243b3a30..051731ab801 100644
--- a/source/blender/blenlib/BLI_serialize.hh
+++ b/source/blender/blenlib/BLI_serialize.hh
@@ -138,7 +138,7 @@ class Value {
public:
virtual ~Value() = default;
- const eValueType type() const
+ eValueType type() const
{
return type_;
}