--------------------------------------------------------------------------------------------------------------------------
| 92 | |
| 93 | //-------------------------------------------------------------------------------------------------------------------------- |
| 94 | void FCogDebugTracker::FreeViewRow(const int32 InViewIndex, const int32 Row) |
| 95 | { |
| 96 | TMap<int32, int32>* GraphOccupation = OccupationMap.Find(InViewIndex); |
| 97 | if (GraphOccupation == nullptr) |
| 98 | { return; } |
| 99 | |
| 100 | int32* RowOccupation = GraphOccupation->Find(Row); |
| 101 | if (RowOccupation == nullptr) |
| 102 | { return; } |
| 103 | |
| 104 | (*RowOccupation)--; |
| 105 | } |
| 106 | |
| 107 | //-------------------------------------------------------------------------------------------------------------------------- |
| 108 | int32 FCogDebugTracker::FindFreeViewRow(const int32 InViewIndex) |
no outgoing calls
no test coverage detected