summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2017-04-16 17:36:25 +0100
committerMichael Drake <michael.drake@codethink.co.uk>2019-08-02 14:19:13 +0100
commitee338c9b24958bfe61a40ee5a4bc0df096134790 (patch)
tree571b119b53d38047865deb7d934487d538cd97c1 /content
parent1c2a0021b315659cdbdf9f1723f95a9d56427b1d (diff)
downloadnetsurf-ee338c9b24958bfe61a40ee5a4bc0df096134790.tar.gz
netsurf-ee338c9b24958bfe61a40ee5a4bc0df096134790.tar.bz2
Duktape: Make declaration match definition for duk_refzero_check_fast()
Diffstat (limited to 'content')
-rw-r--r--content/handlers/javascript/duktape/duktape.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/handlers/javascript/duktape/duktape.c b/content/handlers/javascript/duktape/duktape.c
index 91077ac0a..b0c70e971 100644
--- a/content/handlers/javascript/duktape/duktape.c
+++ b/content/handlers/javascript/duktape/duktape.c
@@ -5373,7 +5373,7 @@ DUK_INTERNAL_DECL void duk_heaphdr_assert_valid(duk_heaphdr *h);
#if defined(DUK_USE_REFERENCE_COUNTING)
#if defined(DUK_USE_FINALIZER_SUPPORT)
DUK_INTERNAL_DECL void duk_refzero_check_slow(duk_hthread *thr);
-DUK_INTERNAL_DECL void duk_refzero_check_fast(duk_hthread *thr);
+DUK_INTERNAL_DECL DUK_INLINE void duk_refzero_check_fast(duk_hthread *thr);
#endif
DUK_INTERNAL_DECL void duk_heaphdr_refcount_finalize_norz(duk_heap *heap, duk_heaphdr *hdr);
DUK_INTERNAL_DECL void duk_hobject_refcount_finalize_norz(duk_heap *heap, duk_hobject *h);