Skip to content

Commit

Permalink
Update src/description.cpp
Browse files Browse the repository at this point in the history
Co-authored-by: Paul-Louis Ageneau <[email protected]>
  • Loading branch information
Sean-Der and paullouisageneau authored Jan 9, 2024
1 parent 64fd86d commit e2f4c7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/description.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ void Description::setFingerprint(CertificateFingerprint f) {

std::transform(f.value.begin(), f.value.end(), f.value.begin(),
[](char c) { return char(std::toupper(c)); });
mFingerprint = f;
mFingerprint = std::move(f);
}

void Description::addIceOption(string option) {
Expand Down

0 comments on commit e2f4c7c

Please sign in to comment.