Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/coding
diff options
context:
space:
mode:
authorArsentiy Milchakov <milcars@mapswithme.com>2017-05-12 13:07:45 +0300
committerArsentiy Milchakov <milcars@mapswithme.com>2017-05-12 13:07:45 +0300
commitc3162fd8b6b837392b915f501e06368396ce20f6 (patch)
tree5a19b7cca2ca3dcdac7b9a95a7a0b3376455cc32 /coding
parent929af9660c98fe5bb29d08099744cb8cfcb01e09 (diff)
std migration generator
Diffstat (limited to 'coding')
-rw-r--r--coding/internal/xmlparser.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/coding/internal/xmlparser.hpp b/coding/internal/xmlparser.hpp
index 3bdb091748..a49cbf4d58 100644
--- a/coding/internal/xmlparser.hpp
+++ b/coding/internal/xmlparser.hpp
@@ -66,7 +66,7 @@ public:
if (m_restrictDepth != size_t(-1))
m_restrictDepth = static_cast<size_t>(-1);
else
- m_dispatcher.Pop(string(pszName));
+ m_dispatcher.Pop(std::string(pszName));
}
void OnCharacterData(XML_Char const * pszData, int nLength)
@@ -89,7 +89,7 @@ private:
size_t m_restrictDepth;
DispatcherT & m_dispatcher;
- string m_charData;
+ std::string m_charData;
bool m_enableCharHandler;
void CheckCharData()