aboutsummaryrefslogtreecommitdiff
path: root/ixslt.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ixslt.cc')
-rw-r--r--ixslt.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/ixslt.cc b/ixslt.cc
index 2200485..b1671b3 100644
--- a/ixslt.cc
+++ b/ixslt.cc
@@ -100,14 +100,14 @@ bool process(const boost::program_options::variables_map& variables) {
if ( variables.count("input") ) {
transformation = InputXSLT::TransformationFacade::try_create(
handleErrors,
- variables["input"].as<std::string>(),
- variables["transformation"].as<std::string>(),
+ variables["input"].as<std::string>().data(),
+ variables["transformation"].as<std::string>().data(),
plattform.getEntityResolver()
);
} else {
transformation = InputXSLT::TransformationFacade::try_create(
handleErrors,
- variables["transformation"].as<std::string>(),
+ variables["transformation"].as<std::string>().data(),
plattform.getEntityResolver()
);
}