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

Backported missed method from HEAD

This commit is contained in:
hvlad 2007-12-03 20:48:06 +00:00
parent 70621c7e48
commit f05296530a

View File

@ -218,6 +218,11 @@ namespace Firebird
void reserve(size_type n = 0);
void resize(size_type n, char_type c = ' ');
inline pointer getBuffer(size_t l)
{
return baseAssign(l);
}
inline size_type copy_from(pointer s, size_type n, size_type pos = 0) const
{
AdjustRange(length(), pos, n);