remove msvc warning

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@458 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
syntheticpp 2006-01-09 08:12:12 +00:00
parent facc431d5a
commit 1da01ad7be

View file

@ -279,7 +279,7 @@ public:
else
{
std::copy(b, e, buf_ + maxSmallString - buf_[maxSmallString]);
buf_[maxSmallString] -= value_type(sz);
buf_[maxSmallString] = buf_[maxSmallString] - value_type(sz);
}
}
}