dbms: IO: modification [#CONV-2546].

This commit is contained in:
Alexey Milovidov 2011-06-27 16:41:02 +00:00
parent 123e3f8e76
commit 054786a2a7
2 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ public:
pos = working_buffer.begin();
}
/** желательно в наследниках поместить в деструктор вызов next(),
/** желательно в наследниках поместить в деструктор вызов nextImpl(),
* чтобы последние данные записались
*/
virtual ~WriteBuffer() {}

View File

@ -31,7 +31,7 @@ public:
~WriteBufferFromOStream()
{
next();
nextImpl();
}
};