1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

Add final specifiers in implementation files

This commit is contained in:
Tom Poole 2023-10-06 13:08:34 +01:00
parent aee5a3a45e
commit 6bf9bb9a2e
315 changed files with 1031 additions and 1025 deletions

View file

@ -369,7 +369,7 @@ int BlowFish::unpad (const void* data, size_t size) noexcept
//==============================================================================
#if JUCE_UNIT_TESTS
class BlowFishTests : public UnitTest
class BlowFishTests final : public UnitTest
{
public:
BlowFishTests()

View file

@ -268,7 +268,7 @@ bool MD5::operator!= (const MD5& other) const noexcept { return ! operator== (
//==============================================================================
#if JUCE_UNIT_TESTS
class MD5Tests : public UnitTest
class MD5Tests final : public UnitTest
{
public:
MD5Tests()

View file

@ -215,7 +215,7 @@ bool SHA256::operator!= (const SHA256& other) const noexcept { return ! operato
//==============================================================================
#if JUCE_UNIT_TESTS
class SHA256Tests : public UnitTest
class SHA256Tests final : public UnitTest
{
public:
SHA256Tests()

View file

@ -616,7 +616,7 @@ bool Whirlpool::operator!= (const Whirlpool& other) const noexcept { return ! o
//==============================================================================
#if JUCE_UNIT_TESTS
class WhirlpoolTests : public UnitTest
class WhirlpoolTests final : public UnitTest
{
public:
WhirlpoolTests()