nppilot/external/avr-stl-stubs/include/pnew.cpp
Michael Hope 4b61ec36e3 Imported the AVR STL 1.1 libraries.
Stubbed out more of STL.
2013-12-17 20:47:35 +01:00

16 lines
197 B
C++

/*
* pnew.cpp
*
* Created on: 24 Dec 2011
* Author: Andy Brown
*/
/**
* Global placement operator new
*/
void* operator new(size_t size_,void *ptr_)
{
return ptr_;
}