summaryrefslogtreecommitdiff
path: root/algparam.h
diff options
context:
space:
mode:
authornoloader <noloader@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2015-06-29 00:45:59 +0000
committernoloader <noloader@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2015-06-29 00:45:59 +0000
commit0ff3516b7f852ff219177ce143301c836d0f6d1e (patch)
tree3ea6b1e00ccefd25bcf8e2b212c214f5400e96cc /algparam.h
parenta33cc753951d6b9af8a620a7717dcc4b08849f19 (diff)
downloadcryptopp-0ff3516b7f852ff219177ce143301c836d0f6d1e.tar.gz
Add CRYPTOPP_UNUSED to help supress unused variable warnings. Applied AlgorithmParametersTemplate because its use is nearly ubiquitous
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@550 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'algparam.h')
-rw-r--r--algparam.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/algparam.h b/algparam.h
index ea5129c..6a22740 100644
--- a/algparam.h
+++ b/algparam.h
@@ -320,6 +320,7 @@ public:
void MoveInto(void *buffer) const
{
AlgorithmParametersTemplate<T>* p = new(buffer) AlgorithmParametersTemplate<T>(*this);
+ CRYPTOPP_UNUSED(p);
}
protected: