summaryrefslogtreecommitdiff
path: root/src/pugixml.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pugixml.hpp')
-rw-r--r--src/pugixml.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pugixml.hpp b/src/pugixml.hpp
index 441b0fe..9a2fe5a 100644
--- a/src/pugixml.hpp
+++ b/src/pugixml.hpp
@@ -1947,6 +1947,7 @@ namespace pugi
{
namespace impl
{
+ int strcmp(const char*, const char*);
int strcmpwild(const char*, const char*);
}
@@ -1958,7 +1959,7 @@ namespace pugi
{
if (node.type() == node_element)
{
- if (!strcmp(name, node.name()))
+ if (!impl::strcmp(name, node.name()))
{
*it = node;
++it;