mirror of
https://codeberg.org/scip/pcp.git
synced 2025-12-17 12:00:56 +01:00
fixed type typo in operator= of Key and PubKey.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user