diff options
author | Simon Marlow <simonmar@microsoft.com> | 2006-03-21 11:27:02 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2006-03-21 11:27:02 +0000 |
commit | 1cccf54bcd78f730bb1d4ec01b3562bcb88b5b6d (patch) | |
tree | 064f763acbdd7434b35670a52cbd1f73bfbb7879 /ghc | |
parent | d957ac9587590c11a8879d7540731c0ffe7d8b5e (diff) | |
download | haskell-1cccf54bcd78f730bb1d4ec01b3562bcb88b5b6d.tar.gz |
tiny cleanup
Diffstat (limited to 'ghc')
-rw-r--r-- | ghc/rts/RetainerSet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/rts/RetainerSet.h b/ghc/rts/RetainerSet.h index 965b9d31c5..6a00e1395e 100644 --- a/ghc/rts/RetainerSet.h +++ b/ghc/rts/RetainerSet.h @@ -127,7 +127,7 @@ extern RetainerSet rs_MANY; */ #define BINARY_SEARCH_THRESHOLD 8 -static inline rtsBool +INLINE_HEADER rtsBool isMember(retainer r, RetainerSet *rs) { int i, left, right; // must be int, not nat (because -1 can appear) |