Skip to content

Commit

Permalink
Add missing std::move
Browse files Browse the repository at this point in the history
  • Loading branch information
tsdgeos committed Jan 1, 2025
1 parent ccdd172 commit 221914f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion poppler/Form.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2206,7 +2206,7 @@ FormFieldSignature::~FormFieldSignature()

void FormFieldSignature::setSignature(std::vector<unsigned char> &&sig)
{
signature = sig;
signature = std::move(sig);
}

const GooString &FormFieldSignature::getCustomAppearanceContent() const
Expand Down

0 comments on commit 221914f

Please sign in to comment.