raw ptr not hold by lua, lua not collect it
| 63 | |
| 64 | // raw ptr not hold by lua, lua not collect it |
| 65 | static const Foo* getInstance() { |
| 66 | static Foo s_inst(2048); |
| 67 | return &s_inst; |
| 68 | } |
| 69 | |
| 70 | EInputEvent testEnum(const char* v, EInputEvent evt) { |
| 71 | Log::Log("get text %s, evt is %d", v, evt); |
nothing calls this directly
no outgoing calls
no test coverage detected