##// END OF EJS Templates
bdiff: change spurious __inline to inline
Matt Mackall -
r1397:66fd3bc1 default
parent child Browse files
Show More
@@ -53,7 +53,7 b' struct hunklist {'
53 struct hunk *base, *head;
53 struct hunk *base, *head;
54 };
54 };
55
55
56 static __inline uint32_t rol32(uint32_t word, unsigned int shift)
56 static inline uint32_t rol32(uint32_t word, unsigned int shift)
57 {
57 {
58 return (word << shift) | (word >> (32 - shift));
58 return (word << shift) | (word >> (32 - shift));
59 }
59 }
General Comments 0
You need to be logged in to leave comments. Login now