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>2011-09-25 16:31:21 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-09-25 16:31:21 +0400
commit274b9c8fb88ff6499ac3b13a081c1e60965e459e (patch)
tree461590235bfb22af06bb6a7079f4e1732acdc241 /intern/string
parent558b646216feaa43abf44eb332d2449c68bf1b39 (diff)
whitespace cleanup
Diffstat (limited to 'intern/string')
-rw-r--r--intern/string/STR_HashedString.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/string/STR_HashedString.h b/intern/string/STR_HashedString.h
index bc4ca9e3d73..3565e622977 100644
--- a/intern/string/STR_HashedString.h
+++ b/intern/string/STR_HashedString.h
@@ -79,7 +79,7 @@ static inline dword STR_gHash(dword inDWord)
key ^= (key >> 13);
key += ~(key << 9);
key ^= (key >> 17);
- return key;
+ return key;
}
enum { GOLDEN_RATIO = 0x9e3779b9 }; // arbitrary value to initialize hash funtion, well not so arbitrary