summaryrefslogtreecommitdiff
path: root/src/expr/node_value.h
diff options
context:
space:
mode:
authorChristopher L. Conway <christopherleeconway@gmail.com>2010-03-25 20:20:29 +0000
committerChristopher L. Conway <christopherleeconway@gmail.com>2010-03-25 20:20:29 +0000
commit56837b30117fda75298138cdd052e0c5ba201b86 (patch)
treeb96d684f9926ea49c2b39e6193a8925f95d0287d /src/expr/node_value.h
parente3e0b625862ba23ba97eb72fcdd3811448ad855a (diff)
Adding comments to NodeManager
Minor name changes for cleanup and hash function templates
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 9f1063715..995a63180 100644
--- a/src/expr/node_value.h
+++ b/src/expr/node_value.h
@@ -231,16 +231,16 @@ public:
* PERFORMING for other uses! NodeValue::internalHash() will lead to
* collisions for all VARIABLEs.
*/
-struct NodeValueInternalHashFcn {
+struct NodeValueInternalHashFunction {
inline size_t operator()(const NodeValue* nv) const {
return (size_t) nv->internalHash();
}
-};/* struct NodeValueHashFcn */
+};/* struct NodeValueInternalHashFunction */
/**
* For hash_maps, hash_sets, etc.
*/
-struct NodeValueIDHashFcn {
+struct NodeValueIDHashFunction {
inline size_t operator()(const NodeValue* nv) const {
return (size_t) nv->getId();
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback