| 397 | // with the given signature, name, arguments, and source. |
| 398 | template<class Signature> |
| 399 | inline function<Signature> |
| 400 | make_function_impl(const char *name, const char *arguments, const char *source) |
| 401 | { |
| 402 | std::stringstream s; |
| 403 | s << make_function_declaration<Signature>(name, arguments); |
| 404 | s << source; |
| 405 | |
| 406 | return make_function_from_source<Signature>(name, s.str()); |
| 407 | } |
| 408 | |
| 409 | } // end detail namespace |
| 410 | } // end compute namespace |
nothing calls this directly
no outgoing calls
no test coverage detected