libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
macros.hxx
Go to the documentation of this file.
1#pragma once
2
3// cosmos
4#include <cosmos/compiler.hxx>
5
12// NOTE: once we have C++20 we can use std::source_location for this
13// PRETTY_FUNCTION includes C++ context like class and signature, is available
14// in gcc (maybe also clang?) but it is *not* a preprocessor define so we need
15// to check for the compiler here to detect support for it.
16
17#ifdef COSMOS_GCC
19# define cosmos_throw(e) (e.setInfo(__FILE__, __LINE__, __PRETTY_FUNCTION__).raise())
20#else
21# define cosmos_throw(e) (e.setInfo(__FILE__, __LINE__, __FUNCTION__).raise())
22#endif
24
30#define COSMOS_ERROR_IMPL [[ noreturn ]] void raise() override { throw *this; }