Network/ENetHost: Remove unused mt19937_64
This commit is contained in:
parent
d2b3b93646
commit
653e56f8ce
|
|
@ -169,7 +169,6 @@ namespace Nz
|
||||||
bool m_recalculateBandwidthLimits;
|
bool m_recalculateBandwidthLimits;
|
||||||
|
|
||||||
static std::mt19937 s_randomGenerator;
|
static std::mt19937 s_randomGenerator;
|
||||||
static std::mt19937_64 s_randomGenerator64;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1391,7 +1391,6 @@ namespace Nz
|
||||||
{
|
{
|
||||||
std::random_device device;
|
std::random_device device;
|
||||||
s_randomGenerator.seed(device());
|
s_randomGenerator.seed(device());
|
||||||
s_randomGenerator64.seed(device());
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
@ -1401,5 +1400,4 @@ namespace Nz
|
||||||
}
|
}
|
||||||
|
|
||||||
std::mt19937 ENetHost::s_randomGenerator;
|
std::mt19937 ENetHost::s_randomGenerator;
|
||||||
std::mt19937_64 ENetHost::s_randomGenerator64;
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue