Removed some useless static_cast.

This commit is contained in:
dankan1890
2016-08-15 00:07:55 +02:00
parent cdba162897
commit 236ba4356e
5 changed files with 6 additions and 6 deletions

View File

@@ -751,7 +751,7 @@ namespace nana
if((pos == npos) || (pos >= list_.size()))
{
this->list_.emplace_back();
pos = static_cast<unsigned>(list_.size() - 1);
pos = list_.size() - 1;
}
else
list_.emplace(iterator_at(pos));