aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/math/bigint/bigint.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/math/bigint/bigint.h')
-rw-r--r--src/lib/math/bigint/bigint.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/math/bigint/bigint.h b/src/lib/math/bigint/bigint.h
index 0b116f3cc..9455a869b 100644
--- a/src/lib/math/bigint/bigint.h
+++ b/src/lib/math/bigint/bigint.h
@@ -22,7 +22,7 @@ class RandomNumberGenerator;
/**
* Arbitrary precision integer
*/
-class BOTAN_PUBLIC_API(2,0) BigInt
+class BOTAN_PUBLIC_API(2,0) BigInt final
{
public:
/**
@@ -38,7 +38,7 @@ class BOTAN_PUBLIC_API(2,0) BigInt
/**
* DivideByZero Exception
*/
- struct BOTAN_PUBLIC_API(2,0) DivideByZero : public Exception
+ struct BOTAN_PUBLIC_API(2,0) DivideByZero final : public Exception
{ DivideByZero() : Exception("BigInt divide by zero") {} };
/**