diff options
author | lloyd <[email protected]> | 2012-04-20 00:28:47 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-04-20 00:28:47 +0000 |
commit | c40782923f9974aa5bfdadd6d4b08ea79f9244f7 (patch) | |
tree | aa5b1e05d4735f1d7dad83031d1c1c9c12bae59b /src/math | |
parent | 538804d54463fca05621990662f34a6251f0adf7 (diff) |
Avoid a few maintainer mode flag warnings. Remove -Weffc++ from the
list of maintainer mode flags. It produces some very useful warnings,
but also a lot of noisy junk that I really don't care about.
Diffstat (limited to 'src/math')
-rw-r--r-- | src/math/numbertheory/pow_mod.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/numbertheory/pow_mod.h b/src/math/numbertheory/pow_mod.h index 7ec237d72..9857c1833 100644 --- a/src/math/numbertheory/pow_mod.h +++ b/src/math/numbertheory/pow_mod.h @@ -61,7 +61,7 @@ class BOTAN_DLL Power_Mod Power_Mod(const BigInt& = 0, Usage_Hints = NO_HINTS); Power_Mod(const Power_Mod&); - ~Power_Mod(); + virtual ~Power_Mod(); private: mutable Modular_Exponentiator* core; Usage_Hints hints; |