aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--src/function/base.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index d23544e..6e8b4fa 100644
--- a/README.md
+++ b/README.md
@@ -28,7 +28,7 @@ The `test` directory contains black-box test cases for every external function p
- CMake
- C++ compiler with C++11 support
-- Apache [Xalan](https://xalan.apache.org/) XSLT Processor
+- Apache [Xalan](https://xalan.apache.org/) XSLT Processor (preferably built with ICU flags)
- Apache [Xerces](https://xerces.apache.org/) XML Library
- Boost [Filesystem](http://www.boost.org/doc/libs/1_55_0/libs/filesystem/doc/index.htm)
- Boost [Program Options](http://www.boost.org/doc/libs/1_55_0/doc/html/program_options.html)
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 <unsigned... Index>
+ template <std::size_t... Index>
inline xalan::XalanDocument* callConstructDocument(
const XObjectArgVectorType& parameters,
const xalan::Locator* locator,