diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-04-03 23:33:24 +0200 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2016-04-25 22:19:31 +0200 |
commit | 9753d1036fb29b579aba58933842b8ce62f27fdd (patch) | |
tree | d7c57a60c6664d6173f0ba899be01eaaed7213bb /src/formats | |
parent | 7b4ea8822c9e3e0140dce8e04a6cc264105ce589 (diff) |
remove unneeded ".second"
Diffstat (limited to 'src/formats')
-rw-r--r-- | src/formats/osxml/OsxmlEventParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/formats/osxml/OsxmlEventParser.cpp b/src/formats/osxml/OsxmlEventParser.cpp index 79a8dbe..a95d063 100644 --- a/src/formats/osxml/OsxmlEventParser.cpp +++ b/src/formats/osxml/OsxmlEventParser.cpp @@ -252,7 +252,7 @@ static void xmlStartElementHandler(void *ref, const XML_Char *name, value.second.setLocation(keyLoc); // Store the keys in the map - args.emplace(key, value.second).second; + args.emplace(key, value.second); } // Fetch the name of the tag, check for special tags |