Kill potentially uninitialized variable warning

This commit is contained in:
leak
2014-08-11 14:03:00 +02:00
parent 08ba49848e
commit 528baae5f7

View File

@@ -470,6 +470,8 @@ class DatabaseWorkerPool
t = new T(_queue, *_connectionInfo);
else if (type == IDX_SYNCH)
t = new T(*_connectionInfo);
else
ASSERT(false);
_connections[type][i] = t;
++_connectionCount[type];