8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-02-02 09:20:39 +01:00
This commit is contained in:
Adriano dos Santos Fernandes 2022-03-04 20:44:33 -03:00 committed by Adriano dos Santos Fernandes
parent c677ac8b5b
commit 0ecf1d71d5
2 changed files with 3 additions and 3 deletions

View File

@ -81,7 +81,7 @@ public:
sub(par.sub), line(par.line)
{ }
Parameter()
: AutoStorage(), name(getPool()), value(getPool()), sub(0), line(0)
: AutoStorage(), name(getPool()), value(getPool()), line(0)
{ }
SINT64 asInteger() const;

View File

@ -90,10 +90,10 @@ namespace Jrd
public:
typedef Firebird::Array<InternalModule*> LoadedModules;
Module() : interMod(0) { }
Module()
{ }
explicit Module(MemoryPool&)
: interMod(NULL)
{ }
Module(MemoryPool&, const Module& m)