diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-06-11 16:03:46 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-06-11 16:03:46 +0000 |
commit | 7ba47b5b688afd7e04b38a3e0e4aa018c10a9a59 (patch) | |
tree | 81a8afe890e7e4222d71071a03b19358e11c7a39 /src/hash.h | |
parent | 55244c8fd50dfda9c7c434cd05fc6280204447dd (diff) | |
download | libbu++-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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() |