MCPcopy Create free account
hub / github.com/boostorg/spirit / find_function

Method find_function

example/qi/compiler_tutorial/conjure2/compiler.cpp:612–620  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

610 }
611
612 boost::shared_ptr<code_gen::function>
613 compiler::find_function(std::string const& name) const
614 {
615 function_table::const_iterator i = functions.find(name);
616 if (i == functions.end())
617 return boost::shared_ptr<code_gen::function>();
618 else
619 return i->second;
620 }
621}}
622

Callers 1

mainFunction · 0.45

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected