chore: rm trailing ;
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
surtur 2022-01-17 04:03:06 +01:00
parent 706176bcc4
commit b4d7cb3dfb
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ auto wait_for(uint milliseconds) -> void {
Accumulator::Accumulator() noexcept {
this->Gen = nullptr;
}
Accumulator::~Accumulator() noexcept {};
Accumulator::~Accumulator() noexcept {}
// check if given source id is an id of an already registered entropy source

View File

@ -30,7 +30,7 @@ Generator::Generator() /*noexcept*/ {
exit(1);
}
}
Generator::~Generator() noexcept {};
Generator::~Generator() noexcept {}
void Generator::initialize_generator() {