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>2019-11-25 07:45:03 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-11-25 07:45:49 +0300
commitbb0708a483f5058f228b2b15f4801467ebddde9d (patch)
tree3cc0c6e2682f7d7ecd7b05328f60ec33e6205125 /source/blender/editors/util
parentb2d940250c73e055a2eb82f51ac7d2e352623995 (diff)
CMake: support building without Python
Resolve linking issues, warnings.
Diffstat (limited to 'source/blender/editors/util')
-rw-r--r--source/blender/editors/util/numinput.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/util/numinput.c b/source/blender/editors/util/numinput.c
index aca695be245..ead841642d7 100644
--- a/source/blender/editors/util/numinput.c
+++ b/source/blender/editors/util/numinput.c
@@ -298,6 +298,7 @@ bool user_string_to_number(
return success;
}
#else
+ UNUSED_VARS(C, unit, type);
*r_value = atof(str);
return true;
#endif