| 89 | class GameObject { |
| 90 | public: |
| 91 | GameObject() { |
| 92 | transform = std::make_shared<Transform>(); |
| 93 | } |
| 94 | std::shared_ptr<Transform> transform; |
| 95 | |
| 96 | TransformPtr __attribute__((noinline)) GetTransform() const { return transform; } |
nothing calls this directly
no outgoing calls
no test coverage detected