13 #ifndef __STOUT_UNIMPLEMENTED_HPP__
14 #define __STOUT_UNIMPLEMENTED_HPP__
18 #ifdef ENABLE_STATIC_UNIMPLEMENTED
19 #define UNIMPLEMENTED static_assert(false, "Unimplemented function");
29 #define UNIMPLEMENTED Unimplemented(__func__, __FILE__, __LINE__)
36 std::cerr <<
"Reached unimplemented function '" <<
function <<
"' at "
37 << file <<
':' << line << std::endl;
42 #endif // __STOUT_UNIMPLEMENTED_HPP__
URI file(const std::string &path)
Creates a file URI with the given path on the local host.
Definition: file.hpp:33
NORETURN void Unimplemented(const char *function, const char *file, const int line)
Definition: unimplemented.hpp:31
#define NORETURN
Definition: attributes.hpp:20