Removed eroneous return statement.

This commit is contained in:
Robert Osfield
2004-05-10 13:56:05 +00:00
parent 6f34ef29f8
commit 4ab330de96

View File

@@ -39,7 +39,7 @@ struct dereference_clear
inline void operator() (const T& t)
{
T& non_const_t = const_cast<T&>(t);
return non_const_t->clear();
non_const_t->clear();
}
};