Main Page   Modules   Class Hierarchy   Data Structures   File List   Data Fields   Globals   Related Pages  

osclconfig_global_placement_new.h

Go to the documentation of this file.
00001 #ifndef OSCLCONFIG_GLOBAL_PLACEMENT_NEW_H_INCLUDED
00002 #define OSCLCONFIG_GLOBAL_PLACEMENT_NEW_H_INCLUDED
00003 
00004 //This file contains a definition of placement new operator
00005 //for use in configurations without a native placement new
00006 //operator definition.
00007 
00008 inline void* operator new(size_t, void* ptr)
00009 {
00010     return ptr;
00011 }
00012 
00013 
00014 #endif

OSCL API
Posting Version: CORE_8.000.1.1_RC4