Echo Writes Code

terminate_handler.hpp

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef CRUCIBLE_BOOT_TERMINATE_HANDLER_HPP
#define CRUCIBLE_BOOT_TERMINATE_HANDLER_HPP

#include <cstdlib>
#include <exception>
#include <iostream>

namespace crucible::boot::terminate_handler
{
  [[noreturn]]
  auto handle_terminate() -> void;
}

#endif // CRUCIBLE_CORE_TERMINATE_HANDLER_HPP