From 58d3e1b8d03a10594e13658b50545fd714c04f6d Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Sat, 14 Jun 2014 18:22:02 +0200 Subject: Changed Base::callConstructDocument sequence parameter to std::size_t * "unsigned" type led to a compiler error on 64bit systems ** the Sequence template uses std::size_t which resolves to "unsigned long" instead of "unsigned int" on 64bit systems ** as "unsigned" is resolved to "unsigned int" by the compiler this situation produced a type conflict * added recommendation for using a xalan library version built with ICU flags to README.md ** otherwise e.g. the "format-number" function is not fully supported --- src/function/base.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/function/base.h b/src/function/base.h index f2b3d5c..5212d65 100644 --- a/src/function/base.h +++ b/src/function/base.h @@ -90,7 +90,7 @@ class FunctionBase : public xalan::Function { return result; } - template + template inline xalan::XalanDocument* callConstructDocument( const XObjectArgVectorType& parameters, const xalan::Locator* locator, -- cgit v1.2.3