summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2005-02-04 14:22:34 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2005-02-04 14:22:34 +0000
commit9d7a425b57bbdbe6e80e14a76c0fcde810ea47e9 (patch)
treeb0e81f2b45700469723c0c117b60d465084c964d
parent5df0e9b2f5e739e96419653ce1d3fbd44b7ebc9c (diff)
downloadATCD-9d7a425b57bbdbe6e80e14a76c0fcde810ea47e9.tar.gz
ChangeLogTag: Fri Feb 4 14:22:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--ace/Hashable.inl2
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Hashable.inl b/ace/Hashable.inl
index 4938b231fab..69f6c3312a0 100644
--- a/ace/Hashable.inl
+++ b/ace/Hashable.inl
@@ -24,7 +24,7 @@ ACE_Hashable::hash (void) const
// relative to the simple comparison.
if (this->hash_value_ == 0)
- ((ACE_Hashable *) this)->hash_value_ = this->hash_i ();
+ (const_cast <ACE_Hashable *> (this))->hash_value_ = this->hash_i ();
return this->hash_value_;
}