summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/datamodel
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-04-12 17:20:00 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-04-12 17:20:00 (GMT)
commitafa1228768254b860212122ac51d6b8e63f45695 (patch)
tree0f5eb5102b3c147b7238941b1f86b1927249fc32 /src/uscxml/plugins/datamodel
parent3f42c2dcd48db09f37adc2d1cd884113e6936821 (diff)
downloaduscxml-afa1228768254b860212122ac51d6b8e63f45695.zip
uscxml-afa1228768254b860212122ac51d6b8e63f45695.tar.gz
uscxml-afa1228768254b860212122ac51d6b8e63f45695.tar.bz2
Fixed namespace issue with gcc
Diffstat (limited to 'src/uscxml/plugins/datamodel')
-rw-r--r--src/uscxml/plugins/datamodel/xpath/XPathDataModel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uscxml/plugins/datamodel/xpath/XPathDataModel.h b/src/uscxml/plugins/datamodel/xpath/XPathDataModel.h
index 5f5952c..7df3918 100644
--- a/src/uscxml/plugins/datamodel/xpath/XPathDataModel.h
+++ b/src/uscxml/plugins/datamodel/xpath/XPathDataModel.h
@@ -21,7 +21,7 @@ public:
int maxArgs,
const std::vector<Arabica::XPath::XPathExpression<std::string> >& args,
InterpreterImpl* interpreter) :
- BooleanXPathFunction(minArgs, maxArgs, args),
+ Arabica::XPath::BooleanXPathFunction<std::string>(minArgs, maxArgs, args),
_interpreter(interpreter) {}
protected: