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:
parent
aee5a3a45e
commit
6bf9bb9a2e
315 changed files with 1031 additions and 1025 deletions
|
|
@ -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()
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue