summaryrefslogtreecommitdiffstats
path: root/test/src/test-arabica-xpath.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/src/test-arabica-xpath.cpp')
-rw-r--r--test/src/test-arabica-xpath.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/src/test-arabica-xpath.cpp b/test/src/test-arabica-xpath.cpp
index 2991dc0..ced1de3 100644
--- a/test/src/test-arabica-xpath.cpp
+++ b/test/src/test-arabica-xpath.cpp
@@ -15,7 +15,7 @@ public:
virtual Arabica::XPath::XPathValue<string_type, string_adaptor> resolveVariable(const string_type& /* namepace_uri */,
const string_type& name) const {
using namespace Arabica::XPath;
- typename VarMap::const_iterator n = map_.find(name);
+ VarMap::const_iterator n = map_.find(name);
if(n == map_.end())
throw UnboundVariableException(string_adaptor::asStdString(name));
return XPathValue<string_type, string_adaptor>(new NodeSetValue<string_type, string_adaptor>((*n).second));