summaryrefslogtreecommitdiff
path: root/src/xpath.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/xpath.h')
-rw-r--r--src/xpath.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xpath.h b/src/xpath.h
index 638ec482..16790e2b 100644
--- a/src/xpath.h
+++ b/src/xpath.h
@@ -760,7 +760,7 @@ inline std::ostream& operator<<(std::ostream& out, const xpath_t::op_t& op) {
template <typename T>
inline T * get_ptr(xml::xpath_t::scope_t * locals, unsigned int idx) {
assert(locals->args.size() > idx);
- T * ptr = static_cast<T *>(locals->args[idx].to_pointer());
+ T * ptr = static_cast<T *>(locals->args[idx].pointer());
assert(ptr);
return ptr;
}