diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-06-27T13·55+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-06-27T13·55+0000 |
commit | 3da9687854e029e9df3b612fd592d2d5a622bb20 (patch) | |
tree | 4b51f62373c134bb80ff5aac51ffe613eef755e6 /src/hash.hh | |
parent | bb03c45ca03e038c8b74fc1410f48d02ade4c59b (diff) |
* Realisation of File(...) expressions.
Diffstat (limited to 'src/hash.hh')
-rw-r--r-- | src/hash.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hash.hh b/src/hash.hh index cbc195c1fb98..509a27912a72 100644 --- a/src/hash.hh +++ b/src/hash.hh @@ -17,10 +17,10 @@ struct Hash Hash(); /* Check whether two hash are equal. */ - bool operator == (Hash & h2); + bool operator == (Hash h2); /* Check whether two hash are not equal. */ - bool operator != (Hash & h2); + bool operator != (Hash h2); /* Convert a hash code into a hexadecimal representation. */ operator string() const; |