We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4143b4 commit 6271e0eCopy full SHA for 6271e0e
src/jrd/extds/ExtDS.h
@@ -30,6 +30,8 @@
30
#include "../../common/classes/locks.h"
31
#include "../../common/utils_proto.h"
32
33
+#include <limits>
34
+
35
36
namespace Jrd
37
{
@@ -366,7 +368,7 @@ class ConnectionsPool
366
368
clear();
367
369
m_conn = NULL;
370
m_hash = hash;
- m_lastUsed = MAX_SINT64;
371
+ m_lastUsed = std::numeric_limits<time_t>::max();
372
}
373
374
void clear() noexcept
0 commit comments