summaryrefslogtreecommitdiff
path: root/src/expr/node_value.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr/node_value.h')
-rw-r--r--src/expr/node_value.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/expr/node_value.h b/src/expr/node_value.h
index 657fabeb5..ae3c6beda 100644
--- a/src/expr/node_value.h
+++ b/src/expr/node_value.h
@@ -358,11 +358,11 @@ operator+(NodeValue::iterator<NodeTemplate<false> >::difference_type p,
* PERFORMING for other uses! NodeValue::poolHash() will lead to
* collisions for all VARIABLEs.
*/
-struct NodeValuePoolHashFcn {
+struct NodeValuePoolHashFunction {
inline size_t operator()(const NodeValue* nv) const {
return (size_t) nv->poolHash();
}
-};/* struct NodeValuePoolHashFcn */
+};/* struct NodeValuePoolHashFunction */
/**
* For hash_maps, hash_sets, etc.
@@ -371,7 +371,7 @@ struct NodeValueIDHashFunction {
inline size_t operator()(const NodeValue* nv) const {
return (size_t) nv->getId();
}
-};/* struct NodeValueIDHashFcn */
+};/* struct NodeValueIDHashFunction */
inline std::ostream& operator<<(std::ostream& out, const NodeValue& nv);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback