Use C type casting instead of static_cast.

JerryScript-DCO-1.0-Signed-off-by: Roland Takacs rtakacs.u-szeged@partner.samsung.com
This commit is contained in:
Roland Takacs
2016-02-02 16:13:17 +01:00
committed by László Langó
parent 764d74561d
commit efc994b112
7 changed files with 15 additions and 15 deletions
+1 -1
View File
@@ -77,7 +77,7 @@ typedef void (*mem_try_give_memory_back_callback_t) (mem_try_give_memory_back_se
* Get value of pointer from specified non-null compressed pointer value
*/
#define MEM_CP_GET_NON_NULL_POINTER(type, cp_value) \
(static_cast<type *> (mem_decompress_pointer (cp_value)))
((type *) (mem_decompress_pointer (cp_value)))
/**
* Get value of pointer from specified compressed pointer value
+1 -1
View File
@@ -110,7 +110,7 @@ extern void mem_heap_valgrind_freya_mempool_request (void);
#define MEM_DEFINE_LOCAL_ARRAY(var_name, number, type) \
{ \
size_t var_name ## ___size = (size_t) (number) * sizeof (type); \
type *var_name = static_cast <type *> (mem_heap_alloc_block (var_name ## ___size, MEM_HEAP_ALLOC_SHORT_TERM));
type *var_name = (type *) (mem_heap_alloc_block (var_name ## ___size, MEM_HEAP_ALLOC_SHORT_TERM));
/**
* Free the previously defined local array variable, freeing corresponding block on the heap,