| 51 | typedef ulong_ result_type; |
| 52 | |
| 53 | hash_impl() |
| 54 | : m_function("") |
| 55 | { |
| 56 | m_function = make_function_from_source<result_type(argument_type)>( |
| 57 | make_hash_function_name<argument_type>(), |
| 58 | make_hash_function_source<argument_type>() |
| 59 | ); |
| 60 | } |
| 61 | |
| 62 | template<class Arg> |
| 63 | invoked_function<result_type, boost::tuple<Arg> > |
nothing calls this directly
no outgoing calls
no test coverage detected