* \brief Remove a global function by name * \param name The name of the function */
| 524 | * \param name The name of the function |
| 525 | */ |
| 526 | static void RemoveGlobal(const String& name) { |
| 527 | static Function fremove = GetGlobalRequired("ffi.FunctionRemoveGlobal"); |
| 528 | fremove(name); |
| 529 | } |
| 530 | /*! |
| 531 | * \brief Constructing a packed function from a normal function. |
| 532 | * |
nothing calls this directly
no outgoing calls
no test coverage detected