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 ced1de3..408cc2b 100644
--- a/test/src/test-arabica-xpath.cpp
+++ b/test/src/test-arabica-xpath.cpp
@@ -52,7 +52,7 @@ public:
virtual Arabica::XPath::XPathValue<string_type, string_adaptor> resolveVariable(const string_type& /* namespace_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 StringValue<string_type, string_adaptor>((*n).second));