diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2011-12-13 15:18:40 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2011-12-13 15:18:58 +0200 |
commit | 63961609e83e77252d75ced99a4141cba470b696 (patch) | |
tree | 0b3916c21a8fedb7634ef18c95d9ba0cdc6facfc /configmgr | |
parent | 1b61b76783d07092fbd88f58777b1273f0898284 (diff) |
Fix problem when compiling against a wrong colour version of the GNU STL
Diffstat (limited to 'configmgr')
-rw-r--r-- | configmgr/source/access.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configmgr/source/access.cxx b/configmgr/source/access.cxx index c34a8acc08be..7fc239cb9d5c 100644 --- a/configmgr/source/access.cxx +++ b/configmgr/source/access.cxx @@ -1609,7 +1609,7 @@ void Access::commitChildChanges( } NodeMap * members = getNode()->getMemberMap(); if (members != 0) { - NodeMap::const_iterator j(members->find(i->first)); + NodeMap::iterator j(members->find(i->first)); if (child.is()) { // Inserted: if (j != members->end()) { |