| 17 | { |
| 18 | public: |
| 19 | DeferredInitializer(std::function<void ()> callback, InitializePriority priority) |
| 20 | : m_Callback(std::move(callback)), m_Priority(priority) |
| 21 | { } |
| 22 | |
| 23 | bool operator>(const DeferredInitializer& other) const |
| 24 | { |
nothing calls this directly
no outgoing calls
no test coverage detected