##// END OF EJS Templates
Use __inline instead of inline...
mpm@selenic.com -
r439:f81a011f default
parent child Browse files
Show More
@@ -42,7 +42,7 b' struct hunklist {'
42 struct hunk *base, *head;
42 struct hunk *base, *head;
43 };
43 };
44
44
45 static inline uint32_t rol32(uint32_t word, unsigned int shift)
45 static __inline uint32_t rol32(uint32_t word, unsigned int shift)
46 {
46 {
47 return (word << shift) | (word >> (32 - shift));
47 return (word << shift) | (word >> (32 - shift));
48 }
48 }
General Comments 0
You need to be logged in to leave comments. Login now