diff options
author | lloyd <[email protected]> | 2012-07-10 21:41:53 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-07-10 21:41:53 +0000 |
commit | 8ae94289f4baffca8060998f24258dd7e343bae7 (patch) | |
tree | 20fb6e286d3ab19f1a3b2217f2242a8c3938ceae /src | |
parent | 3a33e128961e7ea4bd584639ba393d056bec3d23 (diff) |
Typo in the search and replace
Diffstat (limited to 'src')
-rw-r--r-- | src/hash/comb4p/comb4p.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hash/comb4p/comb4p.h b/src/hash/comb4p/comb4p.h index 7ad789cef..e0cffc22b 100644 --- a/src/hash/comb4p/comb4p.h +++ b/src/hash/comb4p/comb4p.h @@ -25,8 +25,8 @@ class BOTAN_DLL Comb4P : public HashFunction */ Comb4P(HashFunction* h1, HashFunction* h2); - Comp4P(const Comp4P&) = delete; - Comp4P& operator=(const Comp4P&) = delete; + Comb4P(const Comb4P&) = delete; + Comb4P& operator=(const Comb4P&) = delete; ~Comb4P() { delete hash1; delete hash2; } |