Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Delete

Lazy delete...

#include <boost/phoenix/object/delete.hpp>

Lazily delete an object, from the heap:

delete_(arg);

where arg is assumed to be a pointer to an object.

Example:

delete_<std::string>(arg1) // note the spelling of delete_ (with trailing underscore)

PrevUpHomeNext