diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2016-03-27 21:43:44 +0200 |
---|---|---|
committer | Herbert Valerio Riedel <hvr@gnu.org> | 2016-03-27 22:14:58 +0200 |
commit | c7b32ad55f4a6ec59f431f47ac2a8a9099f87ab7 (patch) | |
tree | 9c781f4f4a8052ecff3b93a0d31093b0167b271b /rts/win32 | |
parent | 06cd26b92a4dfe1f5036440085c602da798d5146 (diff) | |
download | haskell-c7b32ad55f4a6ec59f431f47ac2a8a9099f87ab7.tar.gz |
Remove now pointless INLINE_ME macro
At some point there may have been a reason for the
`INLINE_ME` macro, but not anymore...
Reviewed By: austin
Differential Revision: https://phabricator.haskell.org/D2041
Diffstat (limited to 'rts/win32')
-rw-r--r-- | rts/win32/GetTime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/win32/GetTime.c b/rts/win32/GetTime.c index 6a452487cb..30f1068f3a 100644 --- a/rts/win32/GetTime.c +++ b/rts/win32/GetTime.c @@ -17,7 +17,7 @@ /* Convert FILETIMEs into secs */ -static INLINE_ME Time +static inline Time fileTimeToRtsTime(FILETIME ft) { Time t; |