aboutsummaryrefslogtreecommitdiff
path: root/jerry-core/ecma/builtin-objects/typedarray
diff options
context:
space:
mode:
authorAkos Kiss <akiss@inf.u-szeged.hu>2018-05-18 02:39:42 +0200
committeryichoi <duddlf.choi@samsung.com>2018-05-18 09:39:42 +0900
commitfb6259b2ec1ae1fe0ef69ad48c0dae1b9195c35d (patch)
treeaae99365fe97f50e2cee694a4636596606f44df1 /jerry-core/ecma/builtin-objects/typedarray
parent0415d74a74c7620c980e2571f5866d09e7a886d5 (diff)
Fix parameter constness differences in function declarations and definitions (#2337)
JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu
Diffstat (limited to 'jerry-core/ecma/builtin-objects/typedarray')
-rw-r--r--jerry-core/ecma/builtin-objects/typedarray/ecma-builtin-typedarray-prototype.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/jerry-core/ecma/builtin-objects/typedarray/ecma-builtin-typedarray-prototype.c b/jerry-core/ecma/builtin-objects/typedarray/ecma-builtin-typedarray-prototype.c
index fbc46764..69fa50fb 100644
--- a/jerry-core/ecma/builtin-objects/typedarray/ecma-builtin-typedarray-prototype.c
+++ b/jerry-core/ecma/builtin-objects/typedarray/ecma-builtin-typedarray-prototype.c
@@ -837,8 +837,8 @@ ecma_op_typedarray_get_separator_string (ecma_value_t separator) /**< possible s
* Returned value must be freed with ecma_free_value.
*/
static ecma_value_t
-ecma_builtin_typedarray_prototype_join (const ecma_value_t this_arg, /**< this argument */
- const ecma_value_t separator_arg) /**< separator argument */
+ecma_builtin_typedarray_prototype_join (ecma_value_t this_arg, /**< this argument */
+ ecma_value_t separator_arg) /**< separator argument */
{
/* 1. */
ecma_value_t obj_value = ecma_op_to_object (this_arg);