diff --git a/src/jrd/ext.cpp b/src/jrd/ext.cpp index a6e3a78e97..11b4757306 100644 --- a/src/jrd/ext.cpp +++ b/src/jrd/ext.cpp @@ -80,7 +80,8 @@ namespace { return Firebird::PathName(Config::getExternalFileAccess()); } public: - explicit ExternalFileDirectoryList(MemoryPool& p) : DirectoryList(p) + explicit ExternalFileDirectoryList(MemoryPool& p) + : DirectoryList(p) { initialize(); } diff --git a/src/jrd/flu.cpp b/src/jrd/flu.cpp index ac1520babd..bb3c5df599 100644 --- a/src/jrd/flu.cpp +++ b/src/jrd/flu.cpp @@ -130,7 +130,8 @@ namespace { return Firebird::PathName(Config::getUdfAccess()); } public: - explicit UdfDirectoryList(MemoryPool& p) : DirectoryList(p) + explicit UdfDirectoryList(MemoryPool& p) + : DirectoryList(p) { initialize(); } diff --git a/src/jrd/isc.cpp b/src/jrd/isc.cpp index 6d597b6fc4..a48b7a1713 100644 --- a/src/jrd/isc.cpp +++ b/src/jrd/isc.cpp @@ -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) diff --git a/src/jrd/isc_file.cpp b/src/jrd/isc_file.cpp index ff7d3c4da8..711b632b7c 100644 --- a/src/jrd/isc_file.cpp +++ b/src/jrd/isc_file.cpp @@ -1815,7 +1815,8 @@ namespace { return Firebird::PathName(Config::getDatabaseAccess()); } public: - explicit DatabaseDirectoryList(MemoryPool& p) : DirectoryList(p) + explicit DatabaseDirectoryList(MemoryPool& p) + : DirectoryList(p) { initialize(); }