Remove 'inline' from functions not in headers

This commit is contained in:
Rangi
2021-04-13 10:27:08 -04:00
parent 25a8518fbf
commit c08cf783c8
9 changed files with 24 additions and 26 deletions

View File

@@ -335,7 +335,7 @@ static void freeDsArgList(struct DsArgList *args)
free(args->args);
}
static inline void failAssert(enum AssertionType type)
static void failAssert(enum AssertionType type)
{
switch (type) {
case ASSERT_FATAL:
@@ -349,7 +349,7 @@ static inline void failAssert(enum AssertionType type)
}
}
static inline void failAssertMsg(enum AssertionType type, char const *msg)
static void failAssertMsg(enum AssertionType type, char const *msg)
{
switch (type) {
case ASSERT_FATAL: