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

Method find_function

example/qi/compiler_tutorial/mini_c/compiler.cpp:528–536  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

526 }
527
528 boost::shared_ptr<code_gen::function>
529 compiler::find_function(std::string const& name) const
530 {
531 function_table::const_iterator i = functions.find(name);
532 if (i == functions.end())
533 return boost::shared_ptr<code_gen::function>();
534 else
535 return i->second;
536 }
537}}
538

Callers 1

mainFunction · 0.45

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected