std::get_terminate

Header: <exception>

Returns the currently installed std::terminate_handler, which may be a null pointer.

# Declarations

std::terminate_handler get_terminate() noexcept;

(since C++11)

# Return value

The currently installed std::terminate_handler.

# Example

This section is incompleteReason: no example

# See also