Network/ENetHost: Remove unused mt19937_64

This commit is contained in:
SirLynix 2024-02-03 14:31:52 +01:00
parent d2b3b93646
commit 653e56f8ce
2 changed files with 0 additions and 3 deletions

View File

@ -169,7 +169,6 @@ namespace Nz
bool m_recalculateBandwidthLimits;
static std::mt19937 s_randomGenerator;
static std::mt19937_64 s_randomGenerator64;
};
}

View File

@ -1391,7 +1391,6 @@ namespace Nz
{
std::random_device device;
s_randomGenerator.seed(device());
s_randomGenerator64.seed(device());
return true;
}
@ -1401,5 +1400,4 @@ namespace Nz
}
std::mt19937 ENetHost::s_randomGenerator;
std::mt19937_64 ENetHost::s_randomGenerator64;
}