fortuna: erase -> clear
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
surtur 2021-12-11 01:20:34 +01:00
parent 801d605e2a
commit 2fbf5464a0
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -33,7 +33,7 @@ namespace fortuna {
std::string n{R.Gen.generate_random_data(n_bytes)};
fmt::print("got you {} proper bytes from generate_random_data -> {}\n",
n_bytes, n);
n.erase();
n.clear();
const auto end{std::chrono::system_clock::now()};
std::chrono::duration<float> diff = end-start;