| 98 | typedef std::shared_ptr<GameObject> GameObjectPtr; |
| 99 | |
| 100 | GameObjectPtr create_game_object() { |
| 101 | return std::make_shared<GameObject>(); |
| 102 | } |
| 103 | |
| 104 | GameObjectPtr __attribute__((noinline)) pass_gameobject_ptr(GameObjectPtr p) { |
| 105 | return p; |
no outgoing calls
no test coverage detected