psemek/libs/util/source/movable_function.cpp

18 lines
195 B
C++

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