summaryrefslogtreecommitdiffhomepage
path: root/FoundationEx/Dictionary.inl
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-01-30 17:41:24 +0100
committerAki <please@ignore.pl>2022-01-30 17:41:24 +0100
commit51657e10769faa2617d546a06c42e4c62a19bb50 (patch)
tree688ad8b61ac02e50974684b9b7d3f886fb469e5f /FoundationEx/Dictionary.inl
parentdb987e23d5dd33a5db8764743facbb906ac22b0f (diff)
downloadstarshatter-51657e10769faa2617d546a06c42e4c62a19bb50.zip
starshatter-51657e10769faa2617d546a06c42e4c62a19bb50.tar.gz
starshatter-51657e10769faa2617d546a06c42e4c62a19bb50.tar.bz2
Removed trailing whitespace all over the place
Diffstat (limited to 'FoundationEx/Dictionary.inl')
-rw-r--r--FoundationEx/Dictionary.inl6
1 files changed, 3 insertions, 3 deletions
diff --git a/FoundationEx/Dictionary.inl b/FoundationEx/Dictionary.inl
index 1f32b9a..d419cf0 100644
--- a/FoundationEx/Dictionary.inl
+++ b/FoundationEx/Dictionary.inl
@@ -96,7 +96,7 @@ T& Dictionary<T>::operator[](const Text& key)
#endif
table[idx] = cell;
-
+
return cell->value;
}
else { // search for key
@@ -178,7 +178,7 @@ int Dictionary<T>::contains(const Text& key) const
if (cell->key == key)
return 1;
}
-
+
return 0;
}
@@ -259,7 +259,7 @@ void DictionaryIter<T>::forth()
chain++;
if (chain < CHAINS)
- here = dict->table[chain];
+ here = dict->table[chain];
else
here = 0;
}