| 64 | |
| 65 | template<typename T> |
| 66 | intrusive_ptr<Object> DefaultObjectFactoryVA(const std::vector<Value>& args) |
| 67 | { |
| 68 | return new T(args); |
| 69 | } |
| 70 | |
| 71 | typedef intrusive_ptr<Object> (*ObjectFactory)(const std::vector<Value>&); |
| 72 |
nothing calls this directly
no outgoing calls
no test coverage detected