8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 03:23:04 +01:00
This commit is contained in:
asfernandes 2008-03-11 02:05:09 +00:00
parent eba9aea3c4
commit 9a19c76ce1
4 changed files with 13 additions and 5 deletions

View File

@ -80,7 +80,8 @@ namespace {
return Firebird::PathName(Config::getExternalFileAccess());
}
public:
explicit ExternalFileDirectoryList(MemoryPool& p) : DirectoryList(p)
explicit ExternalFileDirectoryList(MemoryPool& p)
: DirectoryList(p)
{
initialize();
}

View File

@ -130,7 +130,8 @@ namespace {
return Firebird::PathName(Config::getUdfAccess());
}
public:
explicit UdfDirectoryList(MemoryPool& p) : DirectoryList(p)
explicit UdfDirectoryList(MemoryPool& p)
: DirectoryList(p)
{
initialize();
}

View File

@ -382,9 +382,14 @@ SLONG ISC_set_prefix(const TEXT* sw, const TEXT* path)
* To avoid it accumulate values for switches locally,
* and finally when called with sw==0, use them in correct order.
*/
static struct ESwitches {
static struct ESwitches
{
Firebird::PathName prefix, lockPrefix, msgPrefix;
explicit ESwitches(MemoryPool& p) : prefix(p), lockPrefix(p), msgPrefix(p) { }
explicit ESwitches(MemoryPool& p)
: prefix(p), lockPrefix(p), msgPrefix(p)
{
}
}* eSw = 0;
if (! sw)

View File

@ -1815,7 +1815,8 @@ namespace {
return Firebird::PathName(Config::getDatabaseAccess());
}
public:
explicit DatabaseDirectoryList(MemoryPool& p) : DirectoryList(p)
explicit DatabaseDirectoryList(MemoryPool& p)
: DirectoryList(p)
{
initialize();
}