diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-08-28 19:57:07 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-08-28 19:57:07 +0000 |
commit | 425502d5d07b4e508befa5aba0a266eeb8a6cd31 (patch) | |
tree | 4f5bc404bd91e467953e0024a77ac616b5d09101 /src | |
parent | ecedf7a7d87553116c570ba789b6405ac5eff92d (diff) | |
download | libbu++-425502d5d07b4e508befa5aba0a266eeb8a6cd31.tar.gz libbu++-425502d5d07b4e508befa5aba0a266eeb8a6cd31.tar.bz2 libbu++-425502d5d07b4e508befa5aba0a266eeb8a6cd31.tar.xz libbu++-425502d5d07b4e508befa5aba0a266eeb8a6cd31.zip |
Minor change that may break some other programs in a very minor way, changed
the name of Bu::Hash::size() to Bu::Hash::getSize() to be consistant accross
the system.
Diffstat (limited to 'src')
-rw-r--r-- | src/hash.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -304,7 +304,7 @@ namespace Bu | |||
304 | * Get the number of items stored in the hash table. | 304 | * Get the number of items stored in the hash table. |
305 | *@returns (uint32_t) The number of items stored in the hash table. | 305 | *@returns (uint32_t) The number of items stored in the hash table. |
306 | */ | 306 | */ |
307 | uint32_t size() | 307 | uint32_t getSize() |
308 | { | 308 | { |
309 | return nFilled-nDeleted; | 309 | return nFilled-nDeleted; |
310 | } | 310 | } |