From 7ba47b5b688afd7e04b38a3e0e4aa018c10a9a59 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Mon, 11 Jun 2007 16:03:46 +0000 Subject: 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. --- src/hash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/hash.h') 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 value &operator *() { - return hsh.getAtPos( nPos ); + return hsh.getValueAtPos( nPos ); } key &getKey() -- cgit v1.2.3