18 lines
195 B
C++
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();
|
|
}
|
|
|
|
}
|
|
|
|
}
|