psemek/libs/util/source/function.cpp

18 lines
185 B
C++

#include <psemek/util/function.hpp>
#include <functional>
namespace psemek::util
{
namespace detail
{
void bad_function_call()
{
throw std::bad_function_call{};
}
}
}