We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7df850d commit aed7e01Copy full SHA for aed7e01
1 file changed
src/common/classes/GenericMap.h
@@ -60,6 +60,12 @@ class GenericMap : public AutoStorage
60
class BaseIterator
61
{
62
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
+
69
BaseIterator(TGenericMap* map, bool initFinished = false)
70
: accessor(map),
71
finished(initFinished)
0 commit comments