aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/hash
diff options
context:
space:
mode:
authorneusdan <neusdan>2015-03-10 13:19:15 +0000
committerlloyd <[email protected]>2015-03-10 13:19:15 +0000
commit26a67dbac3d7413bf4c520473b6ab7c97266a133 (patch)
treeabc74201f5ba64aa71b443a432fb6b46381204cb /src/lib/hash
parentae23641ce0531e77b77d660873de1c2e374d21d0 (diff)
Comile fixes for VC 2013. Based on github pull 56
Diffstat (limited to 'src/lib/hash')
-rw-r--r--src/lib/hash/par_hash/par_hash.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/hash/par_hash/par_hash.h b/src/lib/hash/par_hash/par_hash.h
index f67587d16..58900043a 100644
--- a/src/lib/hash/par_hash/par_hash.h
+++ b/src/lib/hash/par_hash/par_hash.h
@@ -30,6 +30,9 @@ class BOTAN_DLL Parallel : public HashFunction
*/
Parallel(const std::vector<HashFunction*>& hashes);
+ Parallel(const Parallel&) = delete;
+ Parallel& operator=(const Parallel&) = delete;
+
static Parallel* make(const Spec& spec);
private:
Parallel() {}