(svn r15447) -Codechange: void functions don't tend to return true if and only if anyway

This commit is contained in:
peter1138
2009-02-11 07:17:39 +00:00
parent 06bdc9d575
commit eeaa4c8d9a
2 changed files with 0 additions and 2 deletions

View File

@@ -45,7 +45,6 @@ struct SmallMap : SmallVector<SmallPair<T, U>, S> {
/** Removes given pair from this map
* @param pair pair to remove
* @return true iff the key was found
* @note it has to be pointer to pair in this map. It is overwritten by the last item.
*/
FORCEINLINE void Erase(Pair *pair)

View File

@@ -121,7 +121,6 @@ public:
/** Removes given item from this map
* @param item item to remove
* @return true iff key was found
* @note it has to be pointer to item in this map. It is overwritten by the last item.
*/
FORCEINLINE void Erase(T *item)