diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-04-12 21:04:42 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-04-12 21:17:58 +0100 |
commit | db1aa2b78e222810a54d47cfc18a13934c41ee9d (patch) | |
tree | c8fdedcce4748a58c6ab45981dfecc1174e4d0eb /i18npool | |
parent | a167f6557fae2589e9305647bbb4ac12a68c3db3 (diff) |
unnecessary cast
Change-Id: I57ad3b2492721115e0ea7ebd9f43480e93b0c8ab
Diffstat (limited to 'i18npool')
-rw-r--r-- | i18npool/source/localedata/saxparser.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i18npool/source/localedata/saxparser.cxx b/i18npool/source/localedata/saxparser.cxx index a4a9cb1b2d09..cafdb14fb807 100644 --- a/i18npool/source/localedata/saxparser.cxx +++ b/i18npool/source/localedata/saxparser.cxx @@ -238,7 +238,7 @@ public: // ExtendedDocumentHandler LocaleNode * l = LocaleNode::createNode (aName, xAttribs); if (!currentNode.empty() ) { - LocaleNode * ln = (LocaleNode *) currentNode.top(); + LocaleNode * ln = currentNode.top(); ln->addChild(l); } else { rootNode = l; |