summaryrefslogtreecommitdiff
path: root/randpool.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-08-01 20:42:55 -0400
committerJeffrey Walton <noloader@gmail.com>2017-08-01 20:42:55 -0400
commit6ab1a729efba62d2ba83c7db967881a9a8ec316c (patch)
tree426e03c5c2fe0a3943ac11a8d7b6a7f0b4146119 /randpool.h
parent05bf4fd54babef3d1f7c32b0fb417a755493626f (diff)
downloadcryptopp-git-6ab1a729efba62d2ba83c7db967881a9a8ec316c.tar.gz
Cleared unused variable warnings
Diffstat (limited to 'randpool.h')
-rw-r--r--randpool.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/randpool.h b/randpool.h
index ffcf4057..37dda408 100644
--- a/randpool.h
+++ b/randpool.h
@@ -87,13 +87,15 @@ public:
size_t TransferTo2(BufferedTransformation &target, lword &transferBytes, const std::string &channel=DEFAULT_CHANNEL, bool blocking=true);
size_t CopyRangeTo2(BufferedTransformation &target, lword &begin, lword end=LWORD_MAX, const std::string &channel=DEFAULT_CHANNEL, bool blocking=true) const
{
+ CRYPTOPP_UNUSED(target); CRYPTOPP_UNUSED(begin); CRYPTOPP_UNUSED(end);
+ CRYPTOPP_UNUSED(channel); CRYPTOPP_UNUSED(blocking);
throw NotImplemented("OldRandomPool: CopyRangeTo2() is not supported by this store");
}
byte GenerateByte();
void GenerateBlock(byte *output, size_t size);
- void IsolatedInitialize(const NameValuePairs &parameters) {}
+ void IsolatedInitialize(const NameValuePairs &parameters) {CRYPTOPP_UNUSED(parameters);}
protected:
void Stir();