aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-09-22 10:58:35 -0400
committerJack Lloyd <[email protected]>2017-09-22 10:58:35 -0400
commita2e70c4eb74d016d8b3c783b4964cfc5ea2b7ddf (patch)
treed2c4a0c41327fd5007fe2323eb581731804a0e53 /src
parent2610d170e73b3e1f94c35de75f6c25cea52ef7d5 (diff)
Additional finals
Diffstat (limited to 'src')
-rw-r--r--src/tests/tests.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tests/tests.h b/src/tests/tests.h
index c4f61dd84..c98ac8397 100644
--- a/src/tests/tests.h
+++ b/src/tests/tests.h
@@ -44,7 +44,7 @@ class Test_Error final : public Botan::Exception
explicit Test_Error(const std::string& what) : Exception("Test error", what) {}
};
-class Provider_Filter
+class Provider_Filter final
{
public:
Provider_Filter() {}
@@ -68,7 +68,7 @@ class Test
/*
* Some number of test results, all associated with who()
*/
- class Result
+ class Result final
{
public:
explicit Result(const std::string& who) : m_who(who) {}
@@ -345,7 +345,7 @@ class Test
std::vector<std::string> m_log;
};
- class Registration
+ class Registration final
{
public:
Registration(const std::string& name, Test* test);