diff --git a/include/omath/containers/encrypted_variable.hpp b/include/omath/containers/encrypted_variable.hpp index b7367a2..b7c9a22 100644 --- a/include/omath/containers/encrypted_variable.hpp +++ b/include/omath/containers/encrypted_variable.hpp @@ -67,7 +67,6 @@ namespace omath::detail consteval std::int64_t rand_uint8_t() { static_assert(Lo <= Hi); - const std::uint64_t span = static_cast(Hi - Lo) + 1ull; const std::uint64_t r = rand_u64(); return static_cast(r) + Lo; }