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

fixed gcc warnings

This commit is contained in:
alexpeshkoff 2006-05-22 10:41:32 +00:00
parent 43239013ed
commit 2eca860afb
2 changed files with 5 additions and 5 deletions

View File

@ -285,13 +285,13 @@ public:
private:
explicit Database(MemoryPool& p)
: modules(p),
: dbb_page_manager(p),
modules(p),
dbb_filename(p),
dbb_database_name(p),
dbb_encrypt_key(p),
dbb_pools(p, 4),
dbb_charsets(p),
dbb_page_manager(p)
dbb_charsets(p)
{
dbb_pools.resize(1);
}

View File

@ -56,8 +56,8 @@ class thread_db;
struct record_param {
record_param() :
rpb_window(DB_PAGE_SPACE, -1),
rpb_relation(0)
rpb_relation(0),
rpb_window(DB_PAGE_SPACE, -1)
{}
RecordNumber rpb_number; /* record number in relation */
SLONG rpb_transaction_nr; /* transaction number */