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

Fix warning

This commit is contained in:
aafemt 2005-12-17 12:48:35 +00:00
parent 8cb2db1046
commit 7f6f8b7e5f

View File

@ -61,7 +61,7 @@ class Format : public pool_alloc<type_fmt>
{
public:
Format(MemoryPool& p, int len)
: fmt_desc(len, p, type_fmt), fmt_count(len)
: fmt_count(len), fmt_desc(len, p, type_fmt)
{
}
static Format* newFormat(MemoryPool& p, int len = 0)