Remove the placement 'new' operator.

JerryScript-DCO-1.0-Signed-off-by: Roland Takacs rtakacs.u-szeged@partner.samsung.com
This commit is contained in:
Roland Takacs
2016-02-04 14:33:07 +01:00
committed by László Langó
parent 3f5451423c
commit 764d74561d
-12
View File
@@ -214,18 +214,6 @@ extern void __noreturn jerry_fatal (jerry_fatal_code_t);
#define JERRY_MIN(v1, v2) ((v1 < v2) ? v1 : v2)
#define JERRY_MAX(v1, v2) ((v1 < v2) ? v2 : v1)
/**
* Placement new operator (constructs an object on a pre-allocated buffer)
*
* Our version of the libc library doesn't support calling the constructors and destructors of the static variables.
* It is proposed to use placement new operator. Generally it is available via #include <new>,
* To fix the unavailability of the header in some configurations placement new operator is implemented here.
*/
inline void *operator new (size_t, void *where)
{
return where;
} /* operator new */
/**
* Read data from a specified buffer.
*