summaryrefslogtreecommitdiff
path: root/src/core/model/Node.cpp
diff options
context:
space:
mode:
authorAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-01-15 02:16:21 +0100
committerAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-01-15 02:16:21 +0100
commit1889a5ca33ac1253ce1b220f667bf0ea94515a1b (patch)
tree16e8e517c0c84c2fa89d61f77273aa13327c5a7b /src/core/model/Node.cpp
parente99a307bf76689e4e86f8ac1a4c545bcebbdb7ab (diff)
fixed clang warnings and errors
Diffstat (limited to 'src/core/model/Node.cpp')
-rw-r--r--src/core/model/Node.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/model/Node.cpp b/src/core/model/Node.cpp
index 7f684ce..54512d5 100644
--- a/src/core/model/Node.cpp
+++ b/src/core/model/Node.cpp
@@ -36,8 +36,8 @@ namespace ousia {
struct VisitorHash {
size_t operator()(const std::pair<const Node *, int> &p) const
{
- const std::hash<const Node *> nodeHash;
- const std::hash<int> intHash;
+ std::hash<const Node *> nodeHash;
+ std::hash<int> intHash;
return nodeHash(p.first) + 37 * intHash(p.second);
}
};