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>2020-06-01 08:04:47 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-06-01 08:04:47 +0300
commit49bd44f5c8d46266e9cf848a91ef85ebdac02629 (patch)
tree3a9a63f258e5dd0dd9a96a8004c3059cf381c78d /source/blender/editors/transform/transform.h
parent81c33f0ba7952555714245ba6cfecf6d9f85839a (diff)
Cleanup: unused variable warning
Also remove unnecessary function return value.
Diffstat (limited to 'source/blender/editors/transform/transform.h')
-rw-r--r--source/blender/editors/transform/transform.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/transform/transform.h b/source/blender/editors/transform/transform.h
index 7720660e2e8..9cd9ddfd811 100644
--- a/source/blender/editors/transform/transform.h
+++ b/source/blender/editors/transform/transform.h
@@ -920,7 +920,7 @@ struct TransformOrientation *addMatrixSpace(struct bContext *C,
float mat[3][3],
const char *name,
const bool overwrite);
-bool applyTransformOrientation(const struct TransformOrientation *ts,
+void applyTransformOrientation(const struct TransformOrientation *ts,
float r_mat[3][3],
char r_name[64]);