MCPcopy Create free account
hub / github.com/boostorg/compute / make_function_impl

Function make_function_impl

include/boost/compute/function.hpp:399–407  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

397// with the given signature, name, arguments, and source.
398template<class Signature>
399inline function<Signature>
400make_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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected