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:
parent
43239013ed
commit
2eca860afb
@ -285,13 +285,13 @@ public:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
explicit Database(MemoryPool& p)
|
explicit Database(MemoryPool& p)
|
||||||
: modules(p),
|
: dbb_page_manager(p),
|
||||||
|
modules(p),
|
||||||
dbb_filename(p),
|
dbb_filename(p),
|
||||||
dbb_database_name(p),
|
dbb_database_name(p),
|
||||||
dbb_encrypt_key(p),
|
dbb_encrypt_key(p),
|
||||||
dbb_pools(p, 4),
|
dbb_pools(p, 4),
|
||||||
dbb_charsets(p),
|
dbb_charsets(p)
|
||||||
dbb_page_manager(p)
|
|
||||||
{
|
{
|
||||||
dbb_pools.resize(1);
|
dbb_pools.resize(1);
|
||||||
}
|
}
|
||||||
|
@ -56,8 +56,8 @@ class thread_db;
|
|||||||
|
|
||||||
struct record_param {
|
struct record_param {
|
||||||
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 */
|
RecordNumber rpb_number; /* record number in relation */
|
||||||
SLONG rpb_transaction_nr; /* transaction number */
|
SLONG rpb_transaction_nr; /* transaction number */
|
||||||
|
Loading…
Reference in New Issue
Block a user