Skip to content
Snippets Groups Projects
Commit 7ef3f0d6 authored by Austin Seipp's avatar Austin Seipp
Browse files

rts: remove unused functions, fix validate on OS X


After a toolchain update, Clang is no longer appreciative of the fact
these are unused, thanks to -Werror during validate.

Signed-off-by: default avatarAustin Seipp <austin@well-typed.com>
parent c4eeacdf
No related merge requests found
......@@ -198,20 +198,14 @@ static inline void postEventHeader(EventsBuf *eb, EventTypeNum type)
{
postEventTypeNum(eb, type);
postTimestamp(eb);
}
}
static inline void postInt8(EventsBuf *eb, StgInt8 i)
{ postWord8(eb, (StgWord8)i); }
static inline void postInt16(EventsBuf *eb, StgInt16 i)
{ postWord16(eb, (StgWord16)i); }
static inline void postInt32(EventsBuf *eb, StgInt32 i)
{ postWord32(eb, (StgWord32)i); }
static inline void postInt64(EventsBuf *eb, StgInt64 i)
{ postWord64(eb, (StgWord64)i); }
void
initEventLogging(void)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment