summaryrefslogtreecommitdiff
path: root/src/expr/node_manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr/node_manager.h')
-rw-r--r--src/expr/node_manager.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/expr/node_manager.h b/src/expr/node_manager.h
index 0f8938397..c3f5238d6 100644
--- a/src/expr/node_manager.h
+++ b/src/expr/node_manager.h
@@ -356,7 +356,7 @@ public:
*/
template <class AttrKind>
inline void setAttribute(expr::NodeValue* nv,
- const AttrKind&,
+ const AttrKind& attr,
const typename AttrKind::value_type& value);
/**
@@ -368,8 +368,8 @@ public:
* <code>AttrKind::value_type</code> if not.
*/
template <class AttrKind>
- inline typename AttrKind::value_type getAttribute(TNode n,
- const AttrKind&) const;
+ inline typename AttrKind::value_type
+ getAttribute(TNode n, const AttrKind& attr) const;
/**
* Check whether an attribute is set for a TNode.
@@ -410,7 +410,7 @@ public:
*/
template <class AttrKind>
inline void setAttribute(TNode n,
- const AttrKind&,
+ const AttrKind& attr,
const typename AttrKind::value_type& value);
/** Get the (singleton) type for booleans. */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback