aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2007-08-28 19:57:07 +0000
committerMike Buland <eichlan@xagasoft.com>2007-08-28 19:57:07 +0000
commit425502d5d07b4e508befa5aba0a266eeb8a6cd31 (patch)
tree4f5bc404bd91e467953e0024a77ac616b5d09101 /src
parentecedf7a7d87553116c570ba789b6405ac5eff92d (diff)
downloadlibbu++-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hash.h b/src/hash.h
index 36665a6..2859758 100644
--- a/src/hash.h
+++ b/src/hash.h
@@ -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 }