epee: remove dodgy random code that nobody uses

in case someone might want to use it
This commit is contained in:
moneromooo-monero 2016-01-30 18:45:22 +00:00
parent b91fc2dc3c
commit 17c7c9caed
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -229,15 +229,6 @@ namespace math_helper
}
}
PRAGMA_WARNING_PUSH
PRAGMA_GCC("GCC diagnostic ignored \"-Wstrict-aliasing\"")
inline
uint64_t generated_random_uint64()
{
boost::uuids::uuid id___ = boost::uuids::random_generator()();
return *reinterpret_cast<uint64_t*>(&id___.data[0]); //(*reinterpret_cast<uint64_t*>(&id___.data[0]) ^ *reinterpret_cast<uint64_t*>(&id___.data[8]));
}
PRAGMA_WARNING_POP
template<int default_interval, bool start_immediate = true>
class once_a_time_seconds
{