summaryrefslogtreecommitdiff
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>2018-08-10 11:30:17 +0100
commit80e8c74a698f2063199972b88226fb115249b1cc (patch)
tree2bcfab03fc999a679b97c15b568ba2a60984d218
parentad0a75af8fff0d6444bdf14b711f794b3f165c73 (diff)
downloadnetsurf-80e8c74a698f2063199972b88226fb115249b1cc.tar.gz
netsurf-80e8c74a698f2063199972b88226fb115249b1cc.tar.bz2
Duktape: Make declaration match definition for duk_refzero_check_fast()
-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 c7a82e9d9..3c14af872 100644
--- a/content/handlers/javascript/duktape/duktape.c
+++ b/content/handlers/javascript/duktape/duktape.c
@@ -5368,7 +5368,7 @@ struct duk_heaphdr_string {
#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);