Skip to content
Snippets Groups Projects
Commit 4b17b18e authored by Steven Murray's avatar Steven Murray
Browse files

Removed used PooledConn constructor

parent 2100d8e4
No related branches found
No related tags found
No related merge requests found
......@@ -23,14 +23,6 @@
namespace cta {
namespace rdbms {
//------------------------------------------------------------------------------
// constructor
//------------------------------------------------------------------------------
PooledConn::PooledConn(Conn *const conn, ConnPool *pool):
m_conn(conn),
m_pool(pool) {
}
//------------------------------------------------------------------------------
// constructor
//------------------------------------------------------------------------------
......
......@@ -37,15 +37,6 @@ class ConnPool;
class PooledConn {
public:
/**
* Constructor.
*
* @param conn The database connection.
* @param pool The database connection pool to which the connection
* should be returned.
*/
PooledConn(Conn *const conn, ConnPool *const pool);
/**
* Constructor.
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment