fixed type typo in operator= of Key and PubKey.

This commit is contained in:
TLINDEN
2013-12-19 12:30:26 +01:00
parent c38e4d9613
commit 89b83dda12

View File

@@ -103,7 +103,7 @@ Key::~Key() {
}
}
Key::Key& Key::operator = (const Key &k) {
Key& Key::operator = (const Key &k) {
K = k.K;
return *this;
}
@@ -298,7 +298,7 @@ PubKey::~PubKey() {
}
}
PubKey::PubKey& PubKey::operator = (const PubKey &k) {
PubKey& PubKey::operator = (const PubKey &k) {
K = k.K;
return *this;
}