diff options
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 752cbbdb7..f33f6eb20 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -281,7 +281,7 @@ #endif /* -** A macro to hint to the compiler that a function should not be +** Macros to hint to the compiler that a function should or should not be ** inlined. */ #if defined(__GNUC__) @@ -294,6 +294,10 @@ # define SQLITE_NOINLINE # define SQLITE_INLINE #endif +#if defined(SQLITE_COVERAGE_TEST) +# undef SQLITE_INLINE +# define SQLITE_INLINE +#endif /* ** Make sure that the compiler intrinsics we desire are enabled when |