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

Avoid compiler warnings.

This commit is contained in:
dimitr 2015-03-25 10:31:13 +00:00
parent e47ec77e48
commit b5914509f6

View File

@ -348,8 +348,8 @@ const ULONG REL_gc_lockneed = 0x80000; // gc lock should be acquired
/// class jrd_rel
inline jrd_rel::jrd_rel(MemoryPool& p)
: rel_name(p), rel_owner_name(p), rel_view_contexts(p), rel_security_name(p),
rel_flags(REL_gc_lockneed)
: rel_flags(REL_gc_lockneed), rel_name(p), rel_owner_name(p),
rel_view_contexts(p), rel_security_name(p)
{
}