| 3443 | class PerformanceTrackingData { |
| 3444 | public: |
| 3445 | enum class DataType : base::type::EnumType { |
| 3446 | Checkpoint = 1, Complete = 2 |
| 3447 | }; |
| 3448 | // Do not use constructor, will run into multiple definition error, use init(PerformanceTracker*) |
| 3449 | explicit PerformanceTrackingData(DataType dataType) : m_performanceTracker(nullptr), |
| 3450 | m_dataType(dataType), m_firstCheckpoint(false), m_file(""), m_line(0), m_func("") {} |
nothing calls this directly
no outgoing calls
no test coverage detected