diff options
author | corvid <corvid@dillo.org> | 2014-02-02 17:05:01 +0000 |
---|---|---|
committer | corvid <corvid@dillo.org> | 2014-02-02 17:05:01 +0000 |
commit | 73a5b8c1d1bdf4d2cad8fdea3deb81ae8e34c9d3 (patch) | |
tree | a86c26b6ec47431df9df4aebd5a439ba756fe3d4 /lout/container.cc | |
parent | 76e1bd77ca2905f185b2363c589b77840687168d (diff) |
trim some spaces
Diffstat (limited to 'lout/container.cc')
-rw-r--r-- | lout/container.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lout/container.cc b/lout/container.cc index de36a6f7..de7b93e2 100644 --- a/lout/container.cc +++ b/lout/container.cc @@ -208,7 +208,7 @@ int Vector::bsearch(Object *key, bool mustExist) // new implementation. if (numElements == 0) return mustExist ? -1 : 0; - + int high = numElements - 1, low = 0; while (true) { @@ -230,7 +230,7 @@ int Vector::bsearch(Object *key, bool mustExist) low = index + 1; } } - + /* void *result = ::bsearch (&key, array, numElements, sizeof (Object*), @@ -562,7 +562,7 @@ HashTable::~HashTable() PRINTF ("- deleting value: %s\n", value->toString()); delete value; } - } + } } } } @@ -596,7 +596,7 @@ void HashTable::intoStringBuffer(misc::StringBuffer *sb) node->object->intoStringBuffer(sb); sb->append(" => "); - + Object *value = ((KeyValuePair*)node)->value; if (value) value->intoStringBuffer(sb); |