From 0b60037afccd5f22339658bc9c9a3bc2feae46ec Mon Sep 17 00:00:00 2001
From: "arseny.kapoulkine"
 <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>
Date: Mon, 13 Sep 2010 19:01:11 +0000
Subject: [PATCH] XPath: Fixed MSVC7 compilation, removed redundant include

git-svn-id: http://pugixml.googlecode.com/svn/trunk@724 99668b35-9821-0410-8761-19e4c4f06640
---
 src/pugixml.cpp | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/pugixml.cpp b/src/pugixml.cpp
index c57ddae0..228dd9e6 100644
--- a/src/pugixml.cpp
+++ b/src/pugixml.cpp
@@ -5049,7 +5049,7 @@ namespace
 	// Converts symbol to lower case, if it is an ASCII one
 	char_t tolower_ascii(char_t ch)
 	{
-		return static_cast<unsigned int>(ch - 'A') < 26 ? (ch | ' ') : ch;
+		return static_cast<unsigned int>(ch - 'A') < 26 ? static_cast<char_t>(ch | ' ') : ch;
 	}
 
 	xpath_string string_value(const xpath_node& na, xpath_allocator* alloc)
@@ -5759,8 +5759,6 @@ namespace
 }
 
 // Internal node set class
-#include <algorithm>
-
 namespace
 {
 	using namespace pugi;
-- 
GitLab