From 4e05568c4d6c2fb987a3a01020e3d450f891784e Mon Sep 17 00:00:00 2001 From: "arseny.kapoulkine" Date: Tue, 25 May 2010 07:54:36 +0000 Subject: Fixed BCC and MSVC6 compilation git-svn-id: http://pugixml.googlecode.com/svn/trunk@444 99668b35-9821-0410-8761-19e4c4f06640 --- src/pugixpath.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/pugixpath.cpp b/src/pugixpath.cpp index e5bf051..facd989 100644 --- a/src/pugixpath.cpp +++ b/src/pugixpath.cpp @@ -1291,7 +1291,7 @@ namespace pugi xpath_ast_node(const xpath_ast_node&); xpath_ast_node& operator=(const xpath_ast_node&); - template static bool compare_eq(xpath_ast_node* lhs, xpath_ast_node* rhs, const xpath_context& c, const Comp& comp = Comp()) + template static bool compare_eq(xpath_ast_node* lhs, xpath_ast_node* rhs, const xpath_context& c, const Comp& comp) { xpath_type_t lt = lhs->rettype(), rt = rhs->rettype(); @@ -1360,7 +1360,7 @@ namespace pugi return false; } - template static bool compare_rel(xpath_ast_node* lhs, xpath_ast_node* rhs, const xpath_context& c, const Comp& comp = Comp()) + template static bool compare_rel(xpath_ast_node* lhs, xpath_ast_node* rhs, const xpath_context& c, const Comp& comp) { xpath_type_t lt = lhs->rettype(), rt = rhs->rettype(); -- cgit v1.2.3