8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 14:03:07 +01:00

Dropped method, compliant with STL's copy(), but never used due to presence of much better copyTo()

This commit is contained in:
alexpeshkoff 2007-12-03 13:29:33 +00:00
parent b12e2349d3
commit 57ff88afec

View File

@ -222,13 +222,6 @@ namespace Firebird
return baseAssign(l);
}
inline size_type copy_from(pointer s, size_type n, size_type pos = 0) const
{
AdjustRange(length(), pos, n);
memcpy(s, c_str() + pos, n);
return n;
}
/* inline void swap(AbstractString& str) {
Storage *tmp = StringData;
StringData = str.StringData;