13 lines
172 B
C++
13 lines
172 B
C++
#include <psemek/util/not_implemented.hpp>
|
|
|
|
#include <stdexcept>
|
|
|
|
namespace psemek::util
|
|
{
|
|
|
|
void not_implemented()
|
|
{
|
|
throw std::runtime_error("Not implemented");
|
|
}
|
|
|
|
}
|