Skip to content

Commit 9135571

Browse files
committed
Fix warning
1 parent 339dce1 commit 9135571

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/jrd/extds/ExtDS.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -867,8 +867,7 @@ bool Connection::getWrapErrors(const ISC_STATUS* status) noexcept
867867
/// ConnectionsPool
868868

869869
ConnectionsPool::ConnectionsPool(MemoryPool& pool)
870-
: m_pool(pool),
871-
m_idleArray(pool),
870+
: m_idleArray(pool),
872871
m_idleList(NULL),
873872
m_activeList(NULL),
874873
m_allCount(0),

src/jrd/extds/ExtDS.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,6 @@ class ConnectionsPool
468468
typedef Firebird::SortedArray<Data*, Firebird::EmptyStorage<Data*>, Data, Data, Data>
469469
IdleArray;
470470

471-
Firebird::MemoryPool& m_pool;
472471
Firebird::Mutex m_mutex;
473472
IdleArray m_idleArray;
474473
Data* m_idleList;

0 commit comments

Comments
 (0)