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:
authorDalai Felinto <dfelinto@gmail.com>2018-01-19 22:04:19 +0300
committerDalai Felinto <dfelinto@gmail.com>2018-01-19 22:04:19 +0300
commit431d5772bb53f87962d6928e9a6dc5d21bec1abc (patch)
tree4bd50a9b55bdc8f23dc652a16b871f1da1d5d15a /source/blender/blenlib/BLI_math_base.h
parent075def8fbda709e9db9086e9f2800a56103eb35d (diff)
Fixup for integer digits commit
Diffstat (limited to 'source/blender/blenlib/BLI_math_base.h')
-rw-r--r--source/blender/blenlib/BLI_math_base.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_math_base.h b/source/blender/blenlib/BLI_math_base.h
index cb3dc960042..377b9325717 100644
--- a/source/blender/blenlib/BLI_math_base.h
+++ b/source/blender/blenlib/BLI_math_base.h
@@ -143,6 +143,7 @@ MINLINE float power_of_2(float f);
MINLINE int integer_digits_f(const float f);
MINLINE int integer_digits_d(const double d);
+MINLINE int integer_digits_i(const int i);
/* these don't really fit anywhere but were being copied about a lot */
MINLINE int is_power_of_2_i(int n);