summaryrefslogtreecommitdiff
path: root/src/mongo/client/connection_pool.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/client/connection_pool.h')
-rw-r--r--src/mongo/client/connection_pool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/client/connection_pool.h b/src/mongo/client/connection_pool.h
index 2d31affcc00..daf36d87337 100644
--- a/src/mongo/client/connection_pool.h
+++ b/src/mongo/client/connection_pool.h
@@ -52,7 +52,7 @@ namespace mongo {
* Information about a connection in the pool.
*/
struct ConnectionInfo {
- ConnectionInfo() : conn(NULL), creationDate(0ULL) {}
+ ConnectionInfo() : conn(NULL) {}
ConnectionInfo(DBClientConnection* theConn, Date_t date)
: conn(theConn),
creationDate(date) {}