diff options
author | lloyd <[email protected]> | 2010-11-04 01:57:10 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-11-04 01:57:10 +0000 |
commit | 51e9d52e4fcfcf486ee53af1a42c98e841bcfde0 (patch) | |
tree | 1fddcd1460aee741ffa19ec4298c265cee3200e4 /src/hash/hash.h | |
parent | 860c43c55492b82bf80611d12d9bafce73ad480b (diff) |
Mass disable copy constructors and assignment on all algos until proven safe/useful
Diffstat (limited to 'src/hash/hash.h')
-rw-r--r-- | src/hash/hash.h | 3 |
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&); }; } |