diff options
author | Treeston <treeston.mmoc@gmail.com> | 2017-07-01 20:18:02 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2020-08-13 22:46:44 +0200 |
commit | 8be23fcbbdf26e8169defd761e61765f301bebe0 (patch) | |
tree | 6309b79f7dd617a8ddc801624dbbd4ed7ac22174 /src/common/Utilities/IteratorPair.h | |
parent | 2c99678118798279372f17d4bb5f5a88ac95c413 (diff) |
[3.3.5] Combat/Threat rewrite - prep & refactor (#19966)
* Combat/Threat rewrite (PR #19930) prep work. Mostly refactors, and a compatibility layer on ThreatManager/HostileReference that allows scripts to be changed already.
(cherry picked from commit e2a1ccd118d129b96e09ff1a15ed0adb1d4a3897)
Diffstat (limited to 'src/common/Utilities/IteratorPair.h')
-rw-r--r-- | src/common/Utilities/IteratorPair.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/Utilities/IteratorPair.h b/src/common/Utilities/IteratorPair.h index 319fadada09..cc8407e5fbd 100644 --- a/src/common/Utilities/IteratorPair.h +++ b/src/common/Utilities/IteratorPair.h @@ -33,6 +33,7 @@ namespace Trinity { public: IteratorPair() : _iterators() { } + IteratorPair(iterator first, iterator second) : _iterators(first, second) { } IteratorPair(std::pair<iterator, iterator> iterators) : _iterators(iterators) { } iterator begin() const { return _iterators.first; } |