Skip to content
This repository has been archived by the owner on May 19, 2022. It is now read-only.

Commit

Permalink
Mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
jtikalsky committed Jun 25, 2020
1 parent e0397c0 commit b3ffb0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cards/GenericUW.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ void IVTableParser::on_start_element(const Glib::ustring& tagname,
{
try {
std::map<std::string, std::string> attrs;
for(xmlpp::SaxParser::AttributeList::const_iterator iter = attributes.cbegin(); iter != attributes.cend(); ++iter)
for(xmlpp::SaxParser::AttributeList::const_iterator iter = attributes.begin(); iter != attributes.end(); ++iter)
attrs.insert(std::make_pair<std::string, std::string>(iter->name.c_str(), iter->value.c_str()));

#define LEVEL_CHECK(curtag, tag) \
Expand Down

0 comments on commit b3ffb0a

Please sign in to comment.