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>2018-02-15 03:13:54 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-02-15 03:13:54 +0300
commit70f1b8cc4061fac81413c723b973386050e2561e (patch)
tree10b550d1b35fda46e8653bc9b584e76f062d2957 /source/blender/blenlib/BLI_hash.h
parent56fa48969e13bf54fc7f64e03cccf6ac82624b15 (diff)
Cleanup: style
Diffstat (limited to 'source/blender/blenlib/BLI_hash.h')
-rw-r--r--source/blender/blenlib/BLI_hash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_hash.h b/source/blender/blenlib/BLI_hash.h
index 8b797820722..fa79481e25c 100644
--- a/source/blender/blenlib/BLI_hash.h
+++ b/source/blender/blenlib/BLI_hash.h
@@ -65,7 +65,7 @@ BLI_INLINE unsigned int BLI_hash_int(unsigned int k)
BLI_INLINE float BLI_hash_int_01(unsigned int k)
{
- return (float)BLI_hash_int(k) * (1.0f/(float)0xFFFFFFFF);
+ return (float)BLI_hash_int(k) * (1.0f / (float)0xFFFFFFFF);
}
#endif // __BLI_HASH_H__