From 372ebd826069a958526786ea7ef6e4ca48341a93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Lang=C3=B3?= Date: Wed, 8 May 2019 11:42:02 +0200 Subject: [PATCH] Fixed linker issues of handle scope in jerry-ext on Windows platform. (#2862) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit JerryScript-DCO-1.0-Signed-off-by: László Langó llango.u-szeged@partner.samsung.com --- jerry-ext/handle-scope/handle-scope-allocator.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jerry-ext/handle-scope/handle-scope-allocator.c b/jerry-ext/handle-scope/handle-scope-allocator.c index 14f5e8222..7c674c6db 100644 --- a/jerry-ext/handle-scope/handle-scope-allocator.c +++ b/jerry-ext/handle-scope/handle-scope-allocator.c @@ -36,7 +36,7 @@ static jerryx_handle_scope_pool_t jerryx_handle_scope_pool = /** * Get current handle scope top of stack. */ -inline jerryx_handle_scope_t * +jerryx_handle_scope_t * jerryx_handle_scope_get_current (void) { return jerryx_handle_scope_current; @@ -45,7 +45,7 @@ jerryx_handle_scope_get_current (void) /** * Get root handle scope. */ -inline jerryx_handle_scope_t * +jerryx_handle_scope_t * jerryx_handle_scope_get_root (void) { return &jerryx_handle_scope_root; @@ -56,7 +56,7 @@ jerryx_handle_scope_get_root (void) * * @param scope - the one to be determined. */ -static inline bool +static bool jerryx_handle_scope_is_in_prelist (jerryx_handle_scope_t *scope) { return (jerryx_handle_scope_pool.prelist <= scope)