From 1fbbcbd64f330f5502ed7dfbe52f06f4fed635d5 Mon Sep 17 00:00:00 2001 From: Saehie Park Date: Mon, 6 Apr 2015 20:21:07 +0900 Subject: [PATCH] to make compiler happy with 'its scope is only this definition or declaration' --- jerry-core/jerry-extension.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/jerry-core/jerry-extension.h b/jerry-core/jerry-extension.h index 779530a50..186e40674 100644 --- a/jerry-core/jerry-extension.h +++ b/jerry-core/jerry-extension.h @@ -53,6 +53,11 @@ typedef struct }; } jerry_extension_field_t; +/** + * Forward declare to make compiler happy + */ +struct jerry_extension_function_t; + /** * Pointer to extension function implementation */