VMS Help
CXXLSTD, Runtime Support, nothrow

 *Conan The Librarian

 			    Standard C++ Library

 NAME

   nothrow, nothrow_t - nothrow is an object of type nothrow_t used as
   an argument to new()/delete() functions to indicate that	those
   functions	never throw	an exception.

 SYNOPSIS

   #include <new>

   namespace std	{
     class nothrow_t;
     extern const nothrow_t nothrow;
   }

 DESCRIPTION

   nothrow_t is of type:

     class nothrow_t {};

   nothrow_t is the type	of a function argument to new()/delete() which
   indicates	that the function should never throw an	exception.

   nothrow is an	object of type nothrow_t declared in the Standard
   Library which	is passed as a function	argument (matching the type
   nothrow_t  parameter) to new()/delete().

 SEE ALSO

   new, delete

 STANDARDS CONFORMANCE
   ANSI X3J16/ISO WG21 Joint C++	Committee
  Close     Help