aboutsummaryrefslogtreecommitdiff
path: root/src/hash.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2007-06-11 16:03:46 +0000
committerMike Buland <eichlan@xagasoft.com>2007-06-11 16:03:46 +0000
commit7ba47b5b688afd7e04b38a3e0e4aa018c10a9a59 (patch)
tree81a8afe890e7e4222d71071a03b19358e11c7a39 /src/hash.h
parent55244c8fd50dfda9c7c434cd05fc6280204447dd (diff)
downloadlibbu++-7ba47b5b688afd7e04b38a3e0e4aa018c10a9a59.tar.gz
libbu++-7ba47b5b688afd7e04b38a3e0e4aa018c10a9a59.tar.bz2
libbu++-7ba47b5b688afd7e04b38a3e0e4aa018c10a9a59.tar.xz
libbu++-7ba47b5b688afd7e04b38a3e0e4aa018c10a9a59.zip
Corrected another issue with the prefix * iterator operator in Bu::Hash, it was
still trying to use a pair internally. Also added more helpers to FString.
Diffstat (limited to 'src/hash.h')
-rw-r--r--src/hash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hash.h b/src/hash.h
index f6c207f..1bb25c9 100644
--- a/src/hash.h
+++ b/src/hash.h
@@ -458,7 +458,7 @@ namespace Bu
458 458
459 value &operator *() 459 value &operator *()
460 { 460 {
461 return hsh.getAtPos( nPos ); 461 return hsh.getValueAtPos( nPos );
462 } 462 }
463 463
464 key &getKey() 464 key &getKey()