Merge pull request #794 from KLayout/issue-793

Fixed #793 - problem was a wrong declaration of the iterator's return…
This commit is contained in:
Matthias Köfferlein 2021-05-13 13:05:22 +02:00 committed by GitHub
commit cd5eb708e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1282,7 +1282,7 @@ public:
typedef ImageRef value_type;
typedef std::map<img::Service::obj_iterator, unsigned int>::const_iterator iterator_type;
typedef void pointer;
typedef const value_type &reference;
typedef value_type reference;
typedef std::forward_iterator_tag iterator_category;
typedef void difference_type;