aboutsummaryrefslogtreecommitdiff
path: root/src/common/Utilities/EventMap.h
diff options
context:
space:
mode:
authorPeter Keresztes Schmidt <carbenium@outlook.com>2020-07-22 16:09:32 +0200
committerShauren <shauren.trinity@gmail.com>2022-01-23 22:20:20 +0100
commit3499f518b52552a411e2b1cbdc3d922e64347f02 (patch)
treeb3130e17c606ba1e8bd669297c0c45dfaeebac65 /src/common/Utilities/EventMap.h
parent330e7100cbbf746206b542b0f13a3d06fcac0925 (diff)
EventMap: Remove GetNextEventTime and GetTimer methods (PR #25092)
(cherry picked from commit 6ab9922171cf6e2877c39f503bcf987dd9faa898)
Diffstat (limited to 'src/common/Utilities/EventMap.h')
-rw-r--r--src/common/Utilities/EventMap.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/common/Utilities/EventMap.h b/src/common/Utilities/EventMap.h
index 7228e84beba..820e7539649 100644
--- a/src/common/Utilities/EventMap.h
+++ b/src/common/Utilities/EventMap.h
@@ -57,15 +57,6 @@ public:
}
/**
- * @name GetTimer
- * @return Current timer value in ms.
- */
- uint32 GetTimer() const
- {
- return _time;
- }
-
- /**
* @name GetPhaseMask
* @return Active phases as mask.
*/
@@ -206,23 +197,6 @@ public:
void CancelEventGroup(uint32 group);
/**
- * @name GetNextEventTime
- * @brief Returns closest occurrence of specified event.
- * @param eventId Wanted event id.
- * @return Time of found event.
- */
- uint32 GetNextEventTime(uint32 eventId) const;
-
- /**
- * @name GetNextEventTime
- * @return Time of next event.
- */
- uint32 GetNextEventTime() const
- {
- return Empty() ? 0 : _eventMap.begin()->first;
- }
-
- /**
* @name IsInPhase
* @brief Returns whether event map is in specified phase or not.
* @param phase Wanted phase.