mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 21:23:03 +01:00
fixed gcc warnings
This commit is contained in:
parent
43239013ed
commit
2eca860afb
@ -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);
|
||||
}
|
||||
|
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user