aboutsummaryrefslogtreecommitdiff
path: root/src/function/read_file.cc
diff options
context:
space:
mode:
authorAdrian Kummerländer2014-05-17 13:56:59 +0200
committerAdrian Kummerländer2014-05-17 13:56:59 +0200
commite7f9b4789d5b0971a14ac00c9bc834f7154ccb9f (patch)
tree52eb28f50934189b29d4257ccfc45727c628089a /src/function/read_file.cc
parent7bd543e220c806177d805a8f4fbc13e951fe5788 (diff)
downloadInputXSLT-e7f9b4789d5b0971a14ac00c9bc834f7154ccb9f.tar
InputXSLT-e7f9b4789d5b0971a14ac00c9bc834f7154ccb9f.tar.gz
InputXSLT-e7f9b4789d5b0971a14ac00c9bc834f7154ccb9f.tar.bz2
InputXSLT-e7f9b4789d5b0971a14ac00c9bc834f7154ccb9f.tar.lz
InputXSLT-e7f9b4789d5b0971a14ac00c9bc834f7154ccb9f.tar.xz
InputXSLT-e7f9b4789d5b0971a14ac00c9bc834f7154ccb9f.tar.zst
InputXSLT-e7f9b4789d5b0971a14ac00c9bc834f7154ccb9f.zip
Equalized parameter/argument naming pattern accross all external functions
* names matter, from now on parameters to external functions will be called parameters uniformly instead of mixing arguments and parameters
Diffstat (limited to 'src/function/read_file.cc')
-rw-r--r--src/function/read_file.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/function/read_file.cc b/src/function/read_file.cc
index 8e14f41..5ded1ac 100644
--- a/src/function/read_file.cc
+++ b/src/function/read_file.cc
@@ -26,10 +26,10 @@ namespace InputXSLT {
xercesc::DOMDocument* FunctionReadFile::constructDocument(
const FilesystemContext& fsContext,
- const FunctionBase::argument_tuple& arguments
+ const FunctionBase::parameter_tuple& parameters
) {
const boost::filesystem::path filePath(
- fsContext.resolve(std::get<0>(arguments))
+ fsContext.resolve(std::get<0>(parameters))
);
xercesc::DOMDocument* const domDocument(