aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-11-04 01:57:10 +0000
committerlloyd <[email protected]>2010-11-04 01:57:10 +0000
commit51e9d52e4fcfcf486ee53af1a42c98e841bcfde0 (patch)
tree1fddcd1460aee741ffa19ec4298c265cee3200e4 /src/hash
parent860c43c55492b82bf80611d12d9bafce73ad480b (diff)
Mass disable copy constructors and assignment on all algos until proven safe/useful
Diffstat (limited to 'src/hash')
-rw-r--r--src/hash/hash.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/hash/hash.h b/src/hash/hash.h
index 366c929b5..8143e8e90 100644
--- a/src/hash/hash.h
+++ b/src/hash/hash.h
@@ -30,9 +30,6 @@ class BOTAN_DLL HashFunction : public Buffered_Computation,
* The hash block size as defined for this algorithm
*/
virtual size_t hash_block_size() const { return 0; }
-
- private:
- HashFunction& operator=(const HashFunction&);
};
}