Skip to content

Commit aed7e01

Browse files
authored
fix build (#9092)
1 parent 7df850d commit aed7e01

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/common/classes/GenericMap.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,12 @@ class GenericMap : public AutoStorage
6060
class BaseIterator
6161
{
6262
public:
63+
using iterator_category = std::forward_iterator_tag;
64+
using value_type = TKeyValuePair;
65+
using difference_type = std::ptrdiff_t;
66+
using pointer = TKeyValuePair*;
67+
using reference = TKeyValuePair&;
68+
6369
BaseIterator(TGenericMap* map, bool initFinished = false)
6470
: accessor(map),
6571
finished(initFinished)

0 commit comments

Comments
 (0)